changing format
Project: http://git-wip-us.apache.org/repos/asf/vxquery/repo Commit: http://git-wip-us.apache.org/repos/asf/vxquery/commit/426da4be Tree: http://git-wip-us.apache.org/repos/asf/vxquery/tree/426da4be Diff: http://git-wip-us.apache.org/repos/asf/vxquery/diff/426da4be Branch: refs/heads/master Commit: 426da4beebe1c6edc4762e6beef66382e5f3577b Parents: c292e45 Author: Christina Pavlopoulou <[email protected]> Authored: Fri Jun 3 17:32:01 2016 -0700 Committer: Christina Pavlopoulou <[email protected]> Committed: Fri Jun 3 17:32:01 2016 -0700 ---------------------------------------------------------------------- vxquery-core/src/main/javacc/xquery-grammar.jj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/vxquery/blob/426da4be/vxquery-core/src/main/javacc/xquery-grammar.jj ---------------------------------------------------------------------- diff --git a/vxquery-core/src/main/javacc/xquery-grammar.jj b/vxquery-core/src/main/javacc/xquery-grammar.jj index 7ea478c..de1272b 100644 --- a/vxquery-core/src/main/javacc/xquery-grammar.jj +++ b/vxquery-core/src/main/javacc/xquery-grammar.jj @@ -2460,7 +2460,7 @@ ASTNode ArrayConstructor() : Token start; } { - (start="[") expr = Expr() "]" { + (start = "[") expr = Expr() "]" { ArrayConstructorNode an = new ArrayConstructorNode(createSourceLocation(start)); an.setExpression(expr); return an;
