Skip to content

Commit 4078214

Browse files
committed
[bugfix] Add missing reserved keyword 'copy'
1 parent 7a76ccc commit 4078214

File tree

1 file changed

+2
-0
lines changed
  • exist-core/src/main/antlr/org/exist/xquery/parser

1 file changed

+2
-0
lines changed

exist-core/src/main/antlr/org/exist/xquery/parser/XQuery.g

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2342,6 +2342,8 @@ reservedKeywords returns [String name]
23422342
"after" { name = "after"; }
23432343
|
23442344
"before" { name = "before"; }
2345+
|
2346+
"copy" { name = "copy"; }
23452347
;
23462348

23472349
/**

0 commit comments

Comments
 (0)