Fix 'ComparisonOperator' parsing

This commit is contained in:
Pijus Kamandulis
2025-02-18 19:12:08 +02:00
parent 14c5400d23
commit 6e3f4169a1
3 changed files with 28 additions and 28 deletions

View File

@@ -2107,40 +2107,40 @@ var g = &grammar{
alternatives: []any{
&litMatcher{
pos: position{line: 406, col: 24, offset: 11503},
val: "=",
ignoreCase: false,
want: "\"=\"",
},
&litMatcher{
pos: position{line: 406, col: 30, offset: 11509},
val: "!=",
ignoreCase: false,
want: "\"!=\"",
},
&litMatcher{
pos: position{line: 406, col: 37, offset: 11516},
val: "<",
ignoreCase: false,
want: "\"<\"",
},
&litMatcher{
pos: position{line: 406, col: 43, offset: 11522},
val: "<=",
ignoreCase: false,
want: "\"<=\"",
},
&litMatcher{
pos: position{line: 406, col: 50, offset: 11529},
val: ">",
ignoreCase: false,
want: "\">\"",
},
&litMatcher{
pos: position{line: 406, col: 56, offset: 11535},
pos: position{line: 406, col: 31, offset: 11510},
val: ">=",
ignoreCase: false,
want: "\">=\"",
},
&litMatcher{
pos: position{line: 406, col: 38, offset: 11517},
val: "=",
ignoreCase: false,
want: "\"=\"",
},
&litMatcher{
pos: position{line: 406, col: 44, offset: 11523},
val: "!=",
ignoreCase: false,
want: "\"!=\"",
},
&litMatcher{
pos: position{line: 406, col: 51, offset: 11530},
val: "<",
ignoreCase: false,
want: "\"<\"",
},
&litMatcher{
pos: position{line: 406, col: 57, offset: 11536},
val: ">",
ignoreCase: false,
want: "\">\"",
},
},
},
},