forked from XPath-Next/XPath-Next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxpath-3.0.ebnf
248 lines (245 loc) · 7.49 KB
/
xpath-3.0.ebnf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
/* XML Path Language (XPath) 3.0
* version http://www.w3.org/TR/2014/REC-xpath-30-20140408/
* extracted from http://www.w3.org/TR/xpath-30/ on Sat Mar 11, 2017, 16:57 (UTC+01)
* with http://www.bottlecaps.de/rr/ui
*/
XPath ::= Expr
ParamList
::= Param ("," Param)*
Param ::= "$" EQName TypeDeclaration?
FunctionBody
::= EnclosedExpr
EnclosedExpr
::= "{" Expr "}"
Expr ::= ExprSingle ("," ExprSingle)*
ExprSingle
::= ForExpr
| LetExpr
| QuantifiedExpr
| IfExpr
| OrExpr
ForExpr ::= SimpleForClause "return" ExprSingle
SimpleForClause
::= "for" SimpleForBinding ("," SimpleForBinding)*
SimpleForBinding
::= "$" VarName "in" ExprSingle
LetExpr ::= SimpleLetClause "return" ExprSingle
SimpleLetClause
::= "let" SimpleLetBinding ("," SimpleLetBinding)*
SimpleLetBinding
::= "$" VarName ":=" ExprSingle
QuantifiedExpr
::= ("some" | "every") "$" VarName "in" ExprSingle ("," "$" VarName "in" ExprSingle)* "satisfies" ExprSingle
IfExpr ::= "if" "(" Expr ")" "then" ExprSingle "else" ExprSingle
OrExpr ::= AndExpr ( "or" AndExpr )*
AndExpr ::= ComparisonExpr ( "and" ComparisonExpr )*
ComparisonExpr
::= StringConcatExpr ( (ValueComp
| GeneralComp
| NodeComp) StringConcatExpr )?
StringConcatExpr
::= RangeExpr ( "||" RangeExpr )*
RangeExpr
::= AdditiveExpr ( "to" AdditiveExpr )?
AdditiveExpr
::= MultiplicativeExpr ( ("+" | "-") MultiplicativeExpr )*
MultiplicativeExpr
::= UnionExpr ( ("*" | "div" | "idiv" | "mod") UnionExpr )*
UnionExpr
::= IntersectExceptExpr ( ("union" | "|") IntersectExceptExpr )*
IntersectExceptExpr
::= InstanceofExpr ( ("intersect" | "except") InstanceofExpr )*
InstanceofExpr
::= TreatExpr ( "instance" "of" SequenceType )?
TreatExpr
::= CastableExpr ( "treat" "as" SequenceType )?
CastableExpr
::= CastExpr ( "castable" "as" SingleType )?
CastExpr ::= UnaryExpr ( "cast" "as" SingleType )?
UnaryExpr
::= ("-" | "+")* ValueExpr
ValueExpr
::= SimpleMapExpr
GeneralComp
::= "=" | "!=" | "<" | "<=" | ">" | ">="
ValueComp
::= "eq" | "ne" | "lt" | "le" | "gt" | "ge"
NodeComp ::= "is" | "<<" | ">>"
SimpleMapExpr
::= PathExpr ("!" PathExpr)*
PathExpr ::= ("/" RelativePathExpr?)
| ("//" RelativePathExpr)
| RelativePathExpr
/* xgc: leading-lone-slash */
RelativePathExpr
::= StepExpr (("/" | "//") StepExpr)*
StepExpr ::= PostfixExpr | AxisStep
AxisStep ::= (ReverseStep | ForwardStep) PredicateList
ForwardStep
::= (ForwardAxis NodeTest) | AbbrevForwardStep
ForwardAxis
::= ("child" "::")
| ("descendant" "::")
| ("attribute" "::")
| ("self" "::")
| ("descendant-or-self" "::")
| ("following-sibling" "::")
| ("following" "::")
| ("namespace" "::")
AbbrevForwardStep
::= "@"? NodeTest
ReverseStep
::= (ReverseAxis NodeTest) | AbbrevReverseStep
ReverseAxis
::= ("parent" "::")
| ("ancestor" "::")
| ("preceding-sibling" "::")
| ("preceding" "::")
| ("ancestor-or-self" "::")
AbbrevReverseStep
::= ".."
NodeTest ::= KindTest | NameTest
NameTest ::= EQName | Wildcard
Wildcard ::= "*"
| (NCName ":" "*")
| ("*" ":" NCName)
| (BracedURILiteral "*")
/* ws: explicit */
PostfixExpr
::= PrimaryExpr (Predicate | ArgumentList)*
ArgumentList
::= "(" (Argument ("," Argument)*)? ")"
PredicateList
::= Predicate*
Predicate
::= "[" Expr "]"
PrimaryExpr
::= Literal
| VarRef
| ParenthesizedExpr
| ContextItemExpr
| FunctionCall
| FunctionItemExpr
Literal ::= NumericLiteral | StringLiteral
NumericLiteral
::= IntegerLiteral | DecimalLiteral | DoubleLiteral
VarRef ::= "$" VarName
VarName ::= EQName
ParenthesizedExpr
::= "(" Expr? ")"
ContextItemExpr
::= "."
FunctionCall
::= EQName ArgumentList
/* xgc: reserved-function-names */
/* gn: parens */
Argument ::= ExprSingle | ArgumentPlaceholder
ArgumentPlaceholder
::= "?"
FunctionItemExpr
::= NamedFunctionRef | InlineFunctionExpr
NamedFunctionRef
::= EQName "#" IntegerLiteral
/* xgc: reserved-function-names */
InlineFunctionExpr
::= "function" "(" ParamList? ")" ("as" SequenceType)? FunctionBody
SingleType
::= SimpleTypeName "?"?
TypeDeclaration
::= "as" SequenceType
SequenceType
::= ("empty-sequence" "(" ")")
| (ItemType OccurrenceIndicator?)
OccurrenceIndicator
::= "?" | "*" | "+"
/* xgc: occurrence-indicators */
ItemType ::= KindTest | ("item" "(" ")") | FunctionTest | AtomicOrUnionType | ParenthesizedItemType
AtomicOrUnionType
::= EQName
KindTest ::= DocumentTest
| ElementTest
| AttributeTest
| SchemaElementTest
| SchemaAttributeTest
| PITest
| CommentTest
| TextTest
| NamespaceNodeTest
| AnyKindTest
AnyKindTest
::= "node" "(" ")"
DocumentTest
::= "document-node" "(" (ElementTest | SchemaElementTest)? ")"
TextTest ::= "text" "(" ")"
CommentTest
::= "comment" "(" ")"
NamespaceNodeTest
::= "namespace-node" "(" ")"
PITest ::= "processing-instruction" "(" (NCName | StringLiteral)? ")"
AttributeTest
::= "attribute" "(" (AttribNameOrWildcard ("," TypeName)?)? ")"
AttribNameOrWildcard
::= AttributeName | "*"
SchemaAttributeTest
::= "schema-attribute" "(" AttributeDeclaration ")"
AttributeDeclaration
::= AttributeName
ElementTest
::= "element" "(" (ElementNameOrWildcard ("," TypeName "?"?)?)? ")"
ElementNameOrWildcard
::= ElementName | "*"
SchemaElementTest
::= "schema-element" "(" ElementDeclaration ")"
ElementDeclaration
::= ElementName
AttributeName
::= EQName
ElementName
::= EQName
SimpleTypeName
::= TypeName
TypeName ::= EQName
FunctionTest
::= AnyFunctionTest
| TypedFunctionTest
AnyFunctionTest
::= "function" "(" "*" ")"
TypedFunctionTest
::= "function" "(" (SequenceType ("," SequenceType)*)? ")" "as" SequenceType
ParenthesizedItemType
::= "(" ItemType ")"
EQName ::= QName | URIQualifiedName
<?TOKENS?>
IntegerLiteral
::= Digits
DecimalLiteral
::= ("." Digits) | (Digits "." [0-9]*)
/* ws: explicit */
DoubleLiteral
::= (("." Digits) | (Digits ("." [0-9]*)?)) [eE] [+-]? Digits
/* ws: explicit */
StringLiteral
::= ('"' (EscapeQuot | [^"])* '"') | ("'" (EscapeApos | [^'])* "'")
/* ws: explicit */
URIQualifiedName
::= BracedURILiteral NCName
/* ws: explicit */
BracedURILiteral
::= "Q" "{" [^{}]* "}"
/* ws: explicit */
EscapeQuot
::= '""'
EscapeApos
::= "''"
Comment ::= "(:" (CommentContents | Comment)* ":)"
/* ws: explicit */
/* gn: comments */
QName ::= [http://www.w3.org/TR/REC-xml-names/#NT-QName]
/* xgc: xml-version */
NCName ::= [http://www.w3.org/TR/REC-xml-names/#NT-NCName]
/* xgc: xml-version */
Char ::= [http://www.w3.org/TR/REC-xml#NT-Char]
/* xgc: xml-version */
Digits ::= [0-9]+
CommentContents
::= (Char+ - (Char* ('(:' | ':)') Char*))