fix/schema: fix string literals
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -11,8 +11,8 @@ import (
|
||||
|
||||
const (
|
||||
NoState = -1
|
||||
NumStates = 211
|
||||
NumSymbols = 101
|
||||
NumStates = 278
|
||||
NumSymbols = 104
|
||||
)
|
||||
|
||||
type Lexer struct {
|
||||
@@ -129,16 +129,16 @@ func (l *Lexer) Reset() {
|
||||
|
||||
/*
|
||||
Lexer symbols:
|
||||
0: '''
|
||||
1: '''
|
||||
2: 'i'
|
||||
3: '('
|
||||
4: ')'
|
||||
5: '.'
|
||||
6: '`'
|
||||
7: '`'
|
||||
8: '"'
|
||||
9: '"'
|
||||
0: '`'
|
||||
1: '`'
|
||||
2: '"'
|
||||
3: '"'
|
||||
4: '''
|
||||
5: '''
|
||||
6: 'i'
|
||||
7: '('
|
||||
8: ')'
|
||||
9: '.'
|
||||
10: '\'
|
||||
11: 'u'
|
||||
12: '\'
|
||||
@@ -222,12 +222,15 @@ Lexer symbols:
|
||||
90: '\r'
|
||||
91: ';'
|
||||
92: '\n'
|
||||
93: '0'-'1'
|
||||
94: '2'-'7'
|
||||
95: '8'-'9'
|
||||
96: 'A'-'F'
|
||||
97: 'a'-'f'
|
||||
98: 'A'-'Z'
|
||||
99: 'a'-'z'
|
||||
100: .
|
||||
93: ' '-'!'
|
||||
94: '#'-'['
|
||||
95: ']'-\U0010ffff
|
||||
96: '0'-'1'
|
||||
97: '2'-'7'
|
||||
98: '8'-'9'
|
||||
99: 'A'-'F'
|
||||
100: 'a'-'f'
|
||||
101: 'A'-'Z'
|
||||
102: 'a'-'z'
|
||||
103: .
|
||||
*/
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user