File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ name: PEG
20
20
main : ' '
21
21
mainJob : ' '
22
22
license : https://github.com/OpenAF/openaf-opacks/blob/master/LICENSE
23
- version : ' 20250204 '
23
+ version : ' 20250216 '
24
24
dependencies :
25
25
openaf : ' >=20230325'
26
26
files :
@@ -61,7 +61,7 @@ filesHash:
61
61
grammars/nlinq.pegjs : f8acc42c546528ee0e12e4bb522e7c43dae5a719
62
62
grammars/semver.pegjs : 0c62fdc83d3841d6eb932348ed540a51e982203e
63
63
grammars/slon.pegjs : 3cffb9a817a63968f1850845967e4891752e33fb
64
- grammars/sql.pegjs : 65a34f3b289e50cbcc5e4b7bba1b3cf11be49cda
64
+ grammars/sql.pegjs : 62c1e92ce966e39b087112768f79f7b5db05de76
65
65
lib/peggy.min.js : 865cef369e6b0de24b6dd59dc9815287fcf56e51
66
66
lib/peggy.min.js.orig : cc51eeb3da071654411106db9a0f13873be23cf8
67
67
peg.js : 666beebe1de7f1ff2b18d49f698b33fba53ec181
Original file line number Diff line number Diff line change @@ -1856,12 +1856,12 @@ arithmetic_comparison_operator
1856
1856
= ">=" / ">" / "<=" / "<>" / "<" / "=" / "!="
1857
1857
1858
1858
is_op_right
1859
- = KW_IS __ right :additive_expr {
1860
- return { op: ' IS' , right: right };
1861
- }
1862
- / (KW_IS __ KW_NOT ) __ right :additive_expr {
1859
+ = (KW_IS __ KW_NOT ) __ right :additive_expr {
1863
1860
return { op: ' IS NOT' , right: right };
1864
1861
}
1862
+ / KW_IS __ right :additive_expr {
1863
+ return { op: ' IS' , right: right };
1864
+ }
1865
1865
1866
1866
between_op_right
1867
1867
= op :between_or_not_between_op __ begin :additive_expr __ KW_AND __ end :additive_expr {
You can’t perform that action at this time.
0 commit comments