We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1486626 + 4e12922 commit 8aa5b02Copy full SHA for 8aa5b02
src/main/java/com/dashjoin/jsonata/Parser.java
@@ -1176,6 +1176,7 @@ Symbol processAST(Symbol expr) {
1176
result = new Symbol(); result.type = "apply"; result.value = expr.value; result.position = expr.position;
1177
result.lhs = processAST(expr.lhs);
1178
result.rhs = processAST(expr.rhs);
1179
+ result.keepArray = result.lhs.keepArray || result.rhs.keepArray;
1180
break;
1181
default:
1182
Infix _result = new Infix(null);
0 commit comments