-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlexer.go
1705 lines (1396 loc) · 35.2 KB
/
lexer.go
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package json6
import (
"io"
"unicode"
"unicode/utf8"
)
// TokenType is token type
type TokenType byte
// Token types
const (
TokenIdentifier TokenType = iota
TokenPunctuator // '{', '}', '[', ']', ':', ','
TokenString
TokenNumber
TokenNull
TokenBool
TokenUndefined
TokenComment
)
// sub-type for TokenNumber
const (
tokenNumInteger = iota
tokenNumDouble
)
// Token types in string
var tokenTypeMap = map[TokenType]string{
TokenIdentifier: "identifier",
TokenString: "string",
TokenNumber: "number",
TokenNull: "null",
TokenBool: "boolean",
TokenUndefined: "undefined",
TokenPunctuator: "punctuator",
TokenComment: "comment",
}
// runeReader is custom character reader for Token
type runeReader struct {
chars []rune
charIdx int // char reading position
charRng int // char reading position range
}
// newRuneReader initiate new runeReader
func newRuneReader() *runeReader {
return &runeReader{
charIdx: -1,
charRng: -1,
}
}
// addChar add character to reader
func (r *runeReader) addChar(char rune) {
r.charRng++
r.chars = append(r.chars, char)
}
// ReadRune read char from reader
func (r *runeReader) ReadRune() (ch rune, size int, err error) {
if r.charIdx+1 <= r.charRng {
r.charIdx++
char := r.chars[r.charIdx]
return char, utf8.RuneLen(char), nil
}
return 0, 0, io.EOF
}
// UnreadRune move reader current index by -1
func (r *runeReader) UnreadRune() error {
if r.charIdx-1 >= -1 {
r.charIdx--
return nil
}
return ErrAlreadyAtBeginning
}
// Token contain characters that form the token, position in file, and its type
type Token struct {
StartPos *Position
EndPos *Position
t TokenType
tokenNumSubType uint
*runeReader
}
// newToken create new empty Token
func newToken() Token {
return Token{
runeReader: newRuneReader(),
}
}
// String return token string
func (t Token) String() string {
return string(t.chars)
}
// Type return token type in TokenType
func (t Token) Type() TokenType {
return t.t
}
// Type return token type name (string)
func (t Token) TypeString() string {
return tokenTypeMap[t.t]
}
// Position indicating token's position
type Position struct {
ln int
col int
}
func newPosition(ln, col int) *Position {
return &Position{ln: ln, col: col}
}
// Line of the position of a token
func (pos *Position) Line() int {
return pos.ln
}
// Column of the position of a token
func (pos *Position) Column() int {
return pos.col
}
func (pos *Position) addLn(add int) {
pos.ln += add
}
func (pos *Position) setCol(col int) {
pos.col = col
}
func (pos *Position) addCol(add int) {
pos.col += add
}
// tokenReader reads tokens fetched by Lexer
type tokenReader struct {
tokens []Token
idx int
rng int
}
func newTokenReader() *tokenReader {
return &tokenReader{idx: -1, rng: -1}
}
func (tokenR *tokenReader) ReadToken() (Token, error) {
if tokenR.idx+1 <= tokenR.rng {
tokenR.idx += 1
return tokenR.tokens[tokenR.idx], nil
}
return Token{}, ErrNoMoreToken
}
// Lexer fetch JSON6 tokens
type Lexer struct {
*tokenReader
pos *Position
r io.RuneReader
token Token // current token
ignoreErr bool // set to true to ignore lexical error
}
func NewLexer(r io.RuneReader) *Lexer {
pos := newPosition(1, 0)
r = newReader(r, pos)
return &Lexer{
tokenReader: newTokenReader(),
pos: pos,
r: r,
token: newToken(),
}
}
func (lx *Lexer) push() {
lx.token.EndPos = newPosition(lx.pos.Line(), lx.pos.Column())
lx.tokens = append(lx.tokens, lx.token)
lx.rng += 1
lx.token = newToken()
}
func (lx *Lexer) pushWithPos(ln, cl int) {
lx.token.EndPos = newPosition(ln, cl)
lx.tokens = append(lx.tokens, lx.token)
lx.rng += 1
lx.token = newToken()
}
// IgnoreError determine if lexer will be ignoring lexical error or not,
// default behavior is to not allow lexical error.
// Call IgnoreError(true) to ignore lexical error
func (lx *Lexer) IgnoreError(ignore bool) {
lx.ignoreErr = ignore
}
// FetchTokensTokens return fetched tokens
func (lx *Lexer) FetchTokens() error {
for {
char, _, err := lx.r.ReadRune()
if err != nil {
if err == io.EOF {
break
}
return err
}
switch char {
// comment
case '/':
lx.token.StartPos = newPosition(lx.pos.ln, lx.pos.col)
if err := lx.fetchComment(); err != nil {
if lx.ignoreErr {
lx.token = Token{}
continue
}
return err
}
continue
// true boolean
case 't':
lx.token.StartPos = newPosition(lx.pos.ln, lx.pos.col)
if err := lx.fetchTrueBool(); err != nil {
if lx.ignoreErr {
lx.token = Token{}
continue
}
return err
}
continue
// false boolean
case 'f':
lx.token.StartPos = newPosition(lx.pos.ln, lx.pos.col)
if err := lx.fetchFalseBool(); err != nil {
if lx.ignoreErr {
lx.token = Token{}
continue
}
return err
}
continue
// null
case 'n':
lx.token.StartPos = newPosition(lx.pos.ln, lx.pos.col)
if err := lx.fetchNull(); err != nil {
if lx.ignoreErr {
lx.token = Token{}
continue
}
return err
}
continue
// undefined
case 'u':
lx.token.StartPos = newPosition(lx.pos.ln, lx.pos.col)
if err := lx.fetchUndefined(); err != nil {
if lx.ignoreErr {
lx.token = Token{}
continue
}
return err
}
continue
// punctuator
case '{', '}', '[', ']', ':', ',':
lx.fetchPunct(char)
continue
// string
case '"', '\'', '`':
lx.token.StartPos = newPosition(lx.pos.ln, lx.pos.col)
if err := lx.fetchString(char); err != nil {
if lx.ignoreErr {
lx.token = Token{}
continue
}
return err
}
continue
// number
case '-', '+', '.', 'I', 'N':
lx.token.StartPos = newPosition(lx.pos.ln, lx.pos.col)
if err := lx.fetchNumber(char); err != nil {
if lx.ignoreErr {
lx.token = Token{}
continue
}
return err
}
continue
case '0', '1', '2', '3', '4', '5', '6', '7', '8', '9':
lx.token.StartPos = newPosition(lx.pos.ln, lx.pos.col)
if err := lx.fetchNumber(char); err != nil {
if lx.ignoreErr {
lx.token = Token{}
continue
}
return err
}
continue
default:
// Check if char is whitespace
if isCharWhitespace(char) {
continue
}
lx.token.StartPos = newPosition(lx.pos.ln, lx.pos.col)
// if char is not whitespace, try to fetch identifier token
if err := lx.fetchIdentifier(true, char); err != nil {
if lx.ignoreErr {
lx.token = Token{}
continue
}
return err
}
}
}
return nil
}
func (lx *Lexer) fetchComment() error {
lx.token.addChar('/')
lx.token.t = TokenComment
char, _, err := lx.r.ReadRune()
if err != nil {
if err == io.EOF {
return errUnexpectedEOF(lx.pos, "'/' or '*'")
}
return err
}
if char == '/' {
lx.token.addChar(char)
for {
char, _, err := lx.r.ReadRune()
if err != nil {
if err == io.EOF {
lx.push()
return nil
}
return err
}
switch char {
case '\r', '\n', '\u2028', '\u2029':
lx.pushWithPos(lx.pos.ln, lx.pos.col-1)
return nil
default:
lx.token.addChar(char)
}
}
} else if char == '*' {
lx.token.addChar(char)
for {
char, _, err := lx.r.ReadRune()
if err != nil {
if err == io.EOF {
return errUnexpectedEOF(lx.pos, "'*'")
}
return err
}
lx.token.addChar(char)
if char == '*' {
char, _, err := lx.r.ReadRune()
if err != nil {
if err == io.EOF {
return errUnexpectedEOF(lx.pos, "'/'")
}
return err
}
lx.token.addChar(char)
if char == '/' {
lx.push()
return nil
}
}
}
}
lx.token.addChar(char)
return errInvalidChar(char, lx.pos, lx.token.chars, "'/'")
}
var falseBoolChars = []rune{'a', 'l', 's', 'e'}
// fetchFalseBool fetch 'false' boolean
func (lx *Lexer) fetchFalseBool() error {
lx.token.t = TokenBool
lx.token.addChar('f')
for _, c := range falseBoolChars {
char, _, err := lx.r.ReadRune()
if err != nil {
if err == io.EOF {
if len(lx.token.chars) > 0 {
lx.token.t = TokenIdentifier
lx.push()
}
return nil
}
return err
}
if char != c {
return lx.fetchIdentifier(false, char)
}
lx.token.addChar(char)
}
char, _, err := lx.r.ReadRune()
if err != nil {
if err != io.EOF {
return err
}
lx.push()
return nil
}
if !isCharWhitespace(char) {
if isCharPunct(char) {
defer lx.fetchPunct(char)
} else if char == '/' {
lx.pushWithPos(lx.pos.ln, lx.pos.col-1)
return lx.fetchComment()
} else {
return lx.fetchIdentifier(false, char)
}
}
lx.pushWithPos(lx.pos.ln, lx.pos.col-1)
return nil
}
var trueBoolChars = []rune{'r', 'u', 'e'}
// fetchTrueBool fetch 'true' boolean
func (lx *Lexer) fetchTrueBool() error {
lx.token.t = TokenBool
lx.token.addChar('t')
for _, c := range trueBoolChars {
char, _, err := lx.r.ReadRune()
if err != nil {
if err == io.EOF {
if len(lx.token.chars) > 0 {
lx.token.t = TokenIdentifier
lx.push()
}
return nil
}
return err
}
if char != c {
return lx.fetchIdentifier(false, char)
}
lx.token.addChar(char)
}
char, _, err := lx.r.ReadRune()
if err != nil {
if err != io.EOF {
return err
}
lx.push()
return nil
}
if !isCharWhitespace(char) {
if isCharPunct(char) {
defer lx.fetchPunct(char)
lx.pushWithPos(lx.pos.ln, lx.pos.col-1)
return nil
} else if char == '/' {
lx.pushWithPos(lx.pos.ln, lx.pos.col-1)
return lx.fetchComment()
} else {
return lx.fetchIdentifier(false, char)
}
}
lx.pushWithPos(lx.pos.ln, lx.pos.col-1)
return nil
}
var nullChars = []rune{'u', 'l', 'l'}
// fetchNull fetch null token
func (lx *Lexer) fetchNull() error {
lx.token.t = TokenNull
lx.token.addChar('n')
for _, c := range nullChars {
char, _, err := lx.r.ReadRune()
if err != nil {
if err == io.EOF {
if len(lx.token.chars) > 0 {
lx.token.t = TokenIdentifier
lx.push()
}
return nil
}
return err
}
// if not null value, it's probably identifier
if char != c {
return lx.fetchIdentifier(false, char)
}
lx.token.addChar(char)
}
// the next char will determine if this token is really is boolean or identifier
char, _, err := lx.r.ReadRune()
if err != nil {
if err != io.EOF {
return err
}
lx.push()
return nil
}
if !isCharWhitespace(char) {
if isCharPunct(char) {
defer lx.fetchPunct(char)
lx.pushWithPos(lx.pos.ln, lx.pos.col-1)
return nil
} else if char == '/' {
lx.pushWithPos(lx.pos.ln, lx.pos.col-1)
return lx.fetchComment()
} else {
return lx.fetchIdentifier(false, char)
}
}
lx.pushWithPos(lx.pos.ln, lx.pos.col-1)
return nil
}
// fetchIdentifier fetch identifier token
func (lx *Lexer) fetchIdentifier(isBegin bool, firstChar rune) error {
lx.token.t = TokenIdentifier
// if isBegin is true, check if firstChar is valid identifier start and
// append to token chars if firstChar is valid
switch firstChar {
case '$', '_':
lx.token.addChar(firstChar)
// punctuator
case '{', '}', '[', ']', ':', ',':
if isBegin {
return errInvalidChar(firstChar, lx.pos, lx.token.chars, "'$', '_', unicode escape sequence, or any charater in categories Uppercase letter (Lu), Lowercase letter (Ll), Titlecase letter (Lt), Modifier letter (Lm), Other letter (Lo), Letter number (Nl)")
}
defer lx.fetchPunct(firstChar)
lx.pushWithPos(lx.pos.ln, lx.pos.col-1)
return nil
case '\\':
// if char is begin of escape sequence, check if escape sequence is unicode escape sequence
char, _, err := lx.r.ReadRune()
if err != nil {
if err == io.EOF {
return errUnexpectedEOF(lx.pos, "'u'")
}
return err
}
lx.token.addChar(char)
switch char {
case 'u':
if err := lx.fetchUnicodeEscape(); err != nil {
return err
}
case 'x':
if err := lx.fetchHexaEscape(); err != nil {
return err
}
default:
return errInvalidChar(char, lx.pos, lx.token.chars, "'u' or 'x'")
}
// possible comment
case '/':
if isBegin {
return errInvalidChar(firstChar, lx.pos, lx.token.chars, "'$', '_', unicode escape sequence, or any charater in categories Uppercase letter (Lu), Lowercase letter (Ll), Titlecase letter (Lt), Modifier letter (Lm), Other letter (Lo), Letter number (Nl)")
}
lx.pushWithPos(lx.pos.ln, lx.pos.col-1)
return lx.fetchComment()
default:
if !unicode.In(firstChar, unicode.Lu, unicode.Ll, unicode.Lt, unicode.Lm, unicode.Lo, unicode.Nl) {
if isBegin {
lx.token.addChar(firstChar)
return errInvalidChar(firstChar, lx.pos, lx.token.chars, "'$', '_', unicode escape sequence, or any charater in categories Uppercase letter (Lu), Lowercase letter (Ll), Titlecase letter (Lt), Modifier letter (Lm), Other letter (Lo), Letter number (Nl)")
}
if !unicode.In(firstChar, unicode.Mn, unicode.Mc, unicode.Nd, unicode.Pc) {
if !isCharWhitespace(firstChar) {
lx.token.addChar(firstChar)
return errInvalidChar(firstChar, lx.pos, lx.token.chars, "'$', '_', unicode escape sequence, or any charater in categories Uppercase letter (Lu), Lowercase letter (Ll), Titlecase letter (Lt), Modifier letter (Lm), Other letter (Lo), Letter number (Nl), Non-spacing mark (Mn), Combining spacing mark (Mc), Decimal number (Nd), Connector punctuation (Pc)")
}
}
}
lx.token.addChar(firstChar)
}
LOOP:
for {
char, _, err := lx.r.ReadRune()
if err != nil {
if err == io.EOF {
lx.push()
return nil
}
return err
}
switch char {
case '$', '_':
lx.token.addChar(char)
continue
// punctuator
case '{', '}', '[', ']', ':', ',':
defer lx.fetchPunct(char)
lx.pushWithPos(lx.pos.ln, lx.pos.col-1)
return nil
case '\\':
lx.token.addChar(char)
// if char is begin of escape sequence, check if escape sequence is unicode escape sequence
char, _, err := lx.r.ReadRune()
if err != nil {
if err == io.EOF {
return errUnexpectedEOF(lx.pos, "'u' or 'x'")
}
return err
}
switch char {
case 'u':
lx.token.addChar(char)
if err := lx.fetchUnicodeEscape(); err != nil {
return err
}
continue
case 'x':
lx.token.addChar(char)
if err := lx.fetchHexaEscape(); err != nil {
return err
}
continue
}
lx.token.addChar(char)
return errInvalidChar(char, lx.pos, lx.token.chars, "'u' or 'x'")
case '/':
lx.pushWithPos(lx.pos.ln, lx.pos.col-1)
return lx.fetchComment()
default:
if !unicode.In(char, unicode.Lu, unicode.Ll, unicode.Lt, unicode.Lm, unicode.Lo, unicode.Nl, unicode.Mn, unicode.Mc, unicode.Nd, unicode.Pc) {
if isCharWhitespace(char) {
break LOOP
}
lx.token.addChar(char)
return errInvalidChar(firstChar, lx.pos, lx.token.chars, "'$', '_', unicode escape sequence, or any charater in categories Uppercase letter (Lu), Lowercase letter (Ll), Titlecase letter (Lt), Modifier letter (Lm), Other letter (Lo), Letter number (Nl), Non-spacing mark (Mn), Combining spacing mark (Mc), Decimal number (Nd), Connector punctuation (Pc)")
}
lx.token.addChar(char)
}
}
lx.pushWithPos(lx.pos.ln, lx.pos.col-1)
return nil
}
// fetchHexaEscape fetch hexadecimal escape sequence, example:
// \xff
func (lx *Lexer) fetchHexaEscape() error {
for i := 0; i < 2; i++ {
char, _, err := lx.r.ReadRune()
if err != nil {
if err == io.EOF {
return errInvalidChar(char, lx.pos, lx.token.chars, "hexadecimal digit")
}
return err
}
lx.token.addChar(char)
if !isCharValidHexa(char) {
return errInvalidChar(char, lx.pos, lx.token.chars, "hexadecimal digit")
}
}
return nil
}
// fetchUnicodeEscape fetch unicode escape sequence
func (lx *Lexer) fetchUnicodeEscape() error {
// In ECMAScript 6, there's 2 (two) types of unicode escape sequence: the good ol' 4 digit hexa digit unicode
// and higher or fewer digit with {} (example: \u{12344f}, \u{f}) to contain them, so we must check
// the first char immediately after char 'u'
char, _, err := lx.r.ReadRune()
if err != nil {
return err
}
lx.token.addChar(char)
if char == '{' {
for {
char, _, err := lx.r.ReadRune()
if err != nil {
if err == io.EOF {
return errUnexpectedEOF(lx.pos, "hexadecimal digit or '}'")
}
return err
}
lx.token.addChar(char)
if !isCharValidHexa(char) {
if char == '}' {
return nil
}
return errInvalidChar(char, lx.pos, lx.token.chars, "hexadecimal digit or '}'")
}
}
}
if !isCharValidHexa(char) {
return errInvalidChar(char, lx.pos, lx.token.chars, "'{' or hexadecimal digit")
}
for i := 0; i < 3; i++ {
char, _, err := lx.r.ReadRune()
if err != nil {
if err == io.EOF {
return errUnexpectedEOF(lx.pos, "hexadecimal digit")
}
return err
}
if !isCharValidHexa(char) {
return errInvalidChar(char, lx.pos, lx.token.chars, "hexadecimal digit")
}
lx.token.addChar(char)
}
return nil
}
// fetchPunct is not exactly for fetching, more like creating the token
func (lx *Lexer) fetchPunct(char rune) {
lx.token.StartPos = newPosition(lx.pos.ln, lx.pos.col)
lx.token.t = TokenPunctuator
lx.token.addChar(char)
lx.push()
}
var undefinedChars = []rune{'n', 'd', 'e', 'f', 'i', 'n', 'e', 'd'}
// fetchUndefined fetch undefined token
func (lx *Lexer) fetchUndefined() error {
lx.token.t = TokenUndefined
lx.token.addChar('u')
for _, c := range undefinedChars {
char, _, err := lx.r.ReadRune()
if err != nil {
if err == io.EOF {
if len(lx.token.chars) > 0 {
lx.token.t = TokenIdentifier
lx.push()
}
return nil
}
return err
}
if char != c {
return lx.fetchIdentifier(false, char)
}
lx.token.addChar(char)
}
char, _, err := lx.r.ReadRune()
if err != nil {
if err != io.EOF {
return err
}
lx.push()
return nil
}
if !isCharWhitespace(char) {
if isCharPunct(char) {
defer lx.fetchPunct(char)
lx.pushWithPos(lx.pos.ln, lx.pos.col-1)
return nil
} else if char == '/' {
lx.pushWithPos(lx.pos.ln, lx.pos.col-1)
return lx.fetchComment()
} else {
return lx.fetchIdentifier(false, char)
}
}
lx.push()
return nil
}
func (lx *Lexer) fetchString(firstChar rune) error {
lx.token.t = TokenString
lx.token.addChar(firstChar)
LOOP:
for {
char, _, err := lx.r.ReadRune()
if err != nil {
if err == io.EOF {
return errUnexpectedEOF(lx.pos, "any Unicode code point")
}
return err
}
lx.token.addChar(char)
switch char {
// possible unicode escape or hexa escape
case '\\':
char, _, err := lx.r.ReadRune()
if err != nil {
if err == io.EOF {
return errUnexpectedEOF(lx.pos, "any Unicode point")
}
return err
}
lx.token.addChar(char)
switch char {
// unicode escape
case 'u':
if err := lx.fetchUnicodeEscape(); err != nil {
return err
}
continue
// hexa escape
case 'x':
if err := lx.fetchHexaEscape(); err != nil {
return err
}
continue
default:
continue
}
case '"':
if firstChar == char {
break LOOP
}
case '\'':
if firstChar == char {
break LOOP
}
case '`':
if firstChar == char {
break LOOP
}
}
}
lx.push()
return nil
}
func (lx *Lexer) fetchHexaNumber() error {
isFirstChar := true
for {
char, _, err := lx.r.ReadRune()
if err != nil {
if err == io.EOF {
if isFirstChar {
return errUnexpectedEOF(lx.pos, "hexadecimal digit")
}
lx.push()
return nil
}
return err
}
if !isCharValidHexa(char) {
if isFirstChar {
lx.token.addChar(char)
return errInvalidChar(char, lx.pos, lx.token.chars, "hexadecimal digit")
}
if isCharPunct(char) {
defer lx.fetchPunct(char)
lx.pushWithPos(lx.pos.ln, lx.pos.col-1)
return nil
} else if isCharWhitespace(char) {
lx.pushWithPos(lx.pos.ln, lx.pos.col-1)
return nil
} else if char == '_' {
lx.token.addChar(char)
// check if next character is valid hexadecimal digit