Skip to content

Commit 1d64126

Browse files
committed
Regenerate parser files
1 parent aff1238 commit 1d64126

File tree

6 files changed

+1832
-1782
lines changed

6 files changed

+1832
-1782
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/parser/antlr/Python3.interp

Lines changed: 3 additions & 1 deletion
Large diffs are not rendered by default.

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/parser/antlr/Python3.tokens

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,10 @@ IDIV_ASSIGN=93
9494
LONG_QUOTES1=94
9595
LONG_QUOTES2=95
9696
SKIP_=96
97-
UNKNOWN_CHAR=97
98-
INDENT=98
99-
DEDENT=99
97+
BOM=97
98+
UNKNOWN_CHAR=98
99+
INDENT=99
100+
DEDENT=100
100101
'def'=2
101102
'return'=3
102103
'raise'=4
@@ -181,3 +182,4 @@ DEDENT=99
181182
'//='=93
182183
'"""'=94
183184
'\'\'\''=95
185+
'\uFEFF'=97

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/parser/antlr/Python3Lexer.interp

Lines changed: 4 additions & 1 deletion
Large diffs are not rendered by default.

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/parser/antlr/Python3Lexer.java

Lines changed: 390 additions & 388 deletions
Large diffs are not rendered by default.

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/parser/antlr/Python3Lexer.tokens

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,8 @@ IDIV_ASSIGN=93
9494
LONG_QUOTES1=94
9595
LONG_QUOTES2=95
9696
SKIP_=96
97-
UNKNOWN_CHAR=97
97+
BOM=97
98+
UNKNOWN_CHAR=98
9899
'def'=2
99100
'return'=3
100101
'raise'=4
@@ -179,3 +180,4 @@ UNKNOWN_CHAR=97
179180
'//='=93
180181
'"""'=94
181182
'\'\'\''=95
183+
'\uFEFF'=97

0 commit comments

Comments
 (0)