fixes problem affecting finding array pointers

This commit is contained in:
Florent Vilmart
2016-03-24 20:42:06 -04:00
parent f4ad4c1af5
commit 4ff52de01c
2 changed files with 40 additions and 1 deletions

View File

@@ -452,7 +452,7 @@ function transformConstraint(constraint, inArray) {
'bad ' + key + ' value');
}
answer[key] = arr.map((v) => {
return transformAtom(v, true);
return transformAtom(v, true, { inArray: inArray });
});
break;