@@ -49,6 +49,65 @@ describe('Lexer', () => {
49
49
} ) ;
50
50
} ) ;
51
51
52
+ it ( 'tracks line breaks' , ( ) => {
53
+ expect ( lexOne ( 'foo' ) ) . to . contain ( {
54
+ kind : TokenKind . NAME ,
55
+ start : 0 ,
56
+ end : 3 ,
57
+ line : 1 ,
58
+ column : 1 ,
59
+ value : 'foo' ,
60
+ } ) ;
61
+ expect ( lexOne ( '\nfoo' ) ) . to . contain ( {
62
+ kind : TokenKind . NAME ,
63
+ start : 1 ,
64
+ end : 4 ,
65
+ line : 2 ,
66
+ column : 1 ,
67
+ value : 'foo' ,
68
+ } ) ;
69
+ expect ( lexOne ( '\rfoo' ) ) . to . contain ( {
70
+ kind : TokenKind . NAME ,
71
+ start : 1 ,
72
+ end : 4 ,
73
+ line : 2 ,
74
+ column : 1 ,
75
+ value : 'foo' ,
76
+ } ) ;
77
+ expect ( lexOne ( '\r\nfoo' ) ) . to . contain ( {
78
+ kind : TokenKind . NAME ,
79
+ start : 2 ,
80
+ end : 5 ,
81
+ line : 2 ,
82
+ column : 1 ,
83
+ value : 'foo' ,
84
+ } ) ;
85
+ expect ( lexOne ( '\n\rfoo' ) ) . to . contain ( {
86
+ kind : TokenKind . NAME ,
87
+ start : 2 ,
88
+ end : 5 ,
89
+ line : 3 ,
90
+ column : 1 ,
91
+ value : 'foo' ,
92
+ } ) ;
93
+ expect ( lexOne ( '\r\r\n\nfoo' ) ) . to . contain ( {
94
+ kind : TokenKind . NAME ,
95
+ start : 4 ,
96
+ end : 7 ,
97
+ line : 4 ,
98
+ column : 1 ,
99
+ value : 'foo' ,
100
+ } ) ;
101
+ expect ( lexOne ( '\n\n\r\rfoo' ) ) . to . contain ( {
102
+ kind : TokenKind . NAME ,
103
+ start : 4 ,
104
+ end : 7 ,
105
+ line : 5 ,
106
+ column : 1 ,
107
+ value : 'foo' ,
108
+ } ) ;
109
+ } ) ;
110
+
52
111
it ( 'records line and column' , ( ) => {
53
112
expect ( lexOne ( '\n \r\n \r foo\n' ) ) . to . contain ( {
54
113
kind : TokenKind . NAME ,
@@ -164,6 +223,13 @@ describe('Lexer', () => {
164
223
} ) ;
165
224
166
225
it ( 'lexes strings' , ( ) => {
226
+ expect ( lexOne ( '""' ) ) . to . contain ( {
227
+ kind : TokenKind . STRING ,
228
+ start : 0 ,
229
+ end : 2 ,
230
+ value : '' ,
231
+ } ) ;
232
+
167
233
expect ( lexOne ( '"simple"' ) ) . to . contain ( {
168
234
kind : TokenKind . STRING ,
169
235
start : 0 ,
@@ -210,6 +276,10 @@ describe('Lexer', () => {
210
276
it ( 'lex reports useful string errors' , ( ) => {
211
277
expectSyntaxError ( '"' , 'Unterminated string.' , { line : 1 , column : 2 } ) ;
212
278
279
+ expectSyntaxError ( '"""' , 'Unterminated string.' , { line : 1 , column : 4 } ) ;
280
+
281
+ expectSyntaxError ( '""""' , 'Unterminated string.' , { line : 1 , column : 5 } ) ;
282
+
213
283
expectSyntaxError ( '"no end quote' , 'Unterminated string.' , {
214
284
line : 1 ,
215
285
column : 14 ,
@@ -287,6 +357,13 @@ describe('Lexer', () => {
287
357
} ) ;
288
358
289
359
it ( 'lexes block strings' , ( ) => {
360
+ expect ( lexOne ( '""""""' ) ) . to . contain ( {
361
+ kind : TokenKind . BLOCK_STRING ,
362
+ start : 0 ,
363
+ end : 6 ,
364
+ value : '' ,
365
+ } ) ;
366
+
290
367
expect ( lexOne ( '"""simple"""' ) ) . to . contain ( {
291
368
kind : TokenKind . BLOCK_STRING ,
292
369
start : 0 ,
@@ -538,6 +615,20 @@ describe('Lexer', () => {
538
615
column : 2 ,
539
616
} ) ;
540
617
618
+ expectSyntaxError ( '01' , 'Invalid number, unexpected digit after 0: "1".' , {
619
+ line : 1 ,
620
+ column : 2 ,
621
+ } ) ;
622
+
623
+ expectSyntaxError (
624
+ '01.23' ,
625
+ 'Invalid number, unexpected digit after 0: "1".' ,
626
+ {
627
+ line : 1 ,
628
+ column : 2 ,
629
+ } ,
630
+ ) ;
631
+
541
632
expectSyntaxError ( '+1' , 'Cannot parse the unexpected character "+".' , {
542
633
line : 1 ,
543
634
column : 1 ,
@@ -548,6 +639,16 @@ describe('Lexer', () => {
548
639
column : 3 ,
549
640
} ) ;
550
641
642
+ expectSyntaxError ( '1e' , 'Invalid number, expected digit but got: <EOF>.' , {
643
+ line : 1 ,
644
+ column : 3 ,
645
+ } ) ;
646
+
647
+ expectSyntaxError ( '1E' , 'Invalid number, expected digit but got: <EOF>.' , {
648
+ line : 1 ,
649
+ column : 3 ,
650
+ } ) ;
651
+
551
652
expectSyntaxError ( '1.e1' , 'Invalid number, expected digit but got: "e".' , {
552
653
line : 1 ,
553
654
column : 3 ,
@@ -578,6 +679,33 @@ describe('Lexer', () => {
578
679
line : 1 ,
579
680
column : 5 ,
580
681
} ) ;
682
+
683
+ expectSyntaxError (
684
+ '1.2e3e' ,
685
+ 'Invalid number, expected digit but got: "e".' ,
686
+ {
687
+ line : 1 ,
688
+ column : 6 ,
689
+ } ,
690
+ ) ;
691
+
692
+ expectSyntaxError (
693
+ '1.2e3.4' ,
694
+ 'Invalid number, expected digit but got: ".".' ,
695
+ {
696
+ line : 1 ,
697
+ column : 6 ,
698
+ } ,
699
+ ) ;
700
+
701
+ expectSyntaxError (
702
+ '1.23.4' ,
703
+ 'Invalid number, expected digit but got: ".".' ,
704
+ {
705
+ line : 1 ,
706
+ column : 5 ,
707
+ } ,
708
+ ) ;
581
709
} ) ;
582
710
583
711
it ( 'lexes punctuation' , ( ) => {
0 commit comments