You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
XQueryParser/JSONParseTreeHandler produce erroneous .pos values for nodes in the syntax tree for certain inputs.
Examples:
1.
xquery version "1.0";
(1, 2)
VersionDecl and MainModule are both children of Module. VersionDecl ends at (line=2, column=0). The MainModule node starts at (0,0), but it should start at (2,0).
(1, 2)
WS ("\n\n") and Module are both children of XQuery. WS ends at (2,0), however Module starts at (0,0).
The text was updated successfully, but these errors were encountered:
XQueryParser/JSONParseTreeHandler produce erroneous .pos values for nodes in the syntax tree for certain inputs.
Examples:
1.
VersionDecl and MainModule are both children of Module. VersionDecl ends at (line=2, column=0). The MainModule node starts at (0,0), but it should start at (2,0).
WS ("\n\n") and Module are both children of XQuery. WS ends at (2,0), however Module starts at (0,0).
The text was updated successfully, but these errors were encountered: