Skip to content

Commit 3215564

Browse files
committed
[fix] Dump map expressions with current syntax
Map expressions use currentt map constructor syntax. `map { $key : $value }`
1 parent 81c3cf2 commit 3215564

File tree

1 file changed

+1
-1
lines changed
  • exist-core/src/main/java/org/exist/xquery/functions/map

1 file changed

+1
-1
lines changed

exist-core/src/main/java/org/exist/xquery/functions/map/MapExpr.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ public void dump(final ExpressionDumper dumper) {
118118
dumper.display("map {");
119119
for (final Mapping mapping : this.mappings) {
120120
mapping.key.dump(dumper);
121-
dumper.display(" := ");
121+
dumper.display(" : ");
122122
mapping.value.dump(dumper);
123123
}
124124
dumper.display("}");

0 commit comments

Comments
 (0)