dukeboard/kevoree-modeling-framework

model query in JS

ahervieu opened this issue · 1 comments

The follwoing queries are not providing the same result :

 var res = kPCM.select("matrices[id = *]/cells[name = * windows *]");
 var res = kPCM.select("matrices[id = *]/cells[name = *windows*]");

In the second query, having the * just after the word windows removes the last letter of the word windows inside the query.
Query is then interpreted as follow :

 var res = kPCM.select("matrices[id = *]/cells[name = *window *]");

Fixed in v4