-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
validator.ts
2475 lines (2288 loc) · 76.2 KB
/
validator.ts
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
import { EcmaVersion } from "./ecma-versions"
import { Reader } from "./reader"
import { RegExpSyntaxError } from "./regexp-syntax-error"
import {
Asterisk,
Backspace,
CarriageReturn,
CharacterTabulation,
CircumflexAccent,
Colon,
Comma,
DigitNine,
DigitOne,
digitToInt,
DigitZero,
DollarSign,
EqualsSign,
ExclamationMark,
FormFeed,
FullStop,
GreaterThanSign,
HyphenMinus,
LatinCapitalLetterB,
LatinCapitalLetterD,
LatinCapitalLetterP,
LatinCapitalLetterS,
LatinCapitalLetterW,
LatinSmallLetterB,
LatinSmallLetterC,
LatinSmallLetterD,
LatinSmallLetterF,
LatinSmallLetterG,
LatinSmallLetterI,
LatinSmallLetterK,
LatinSmallLetterM,
LatinSmallLetterN,
LatinSmallLetterP,
LatinSmallLetterR,
LatinSmallLetterS,
LatinSmallLetterT,
LatinSmallLetterU,
LatinSmallLetterV,
LatinSmallLetterW,
LatinSmallLetterX,
LatinSmallLetterY,
LeftCurlyBracket,
LeftParenthesis,
LeftSquareBracket,
LessThanSign,
LineFeed,
LineTabulation,
LowLine,
PlusSign,
QuestionMark,
ReverseSolidus,
RightCurlyBracket,
RightParenthesis,
RightSquareBracket,
Solidus,
VerticalLine,
ZeroWidthJoiner,
ZeroWidthNonJoiner,
combineSurrogatePair,
isDecimalDigit,
isHexDigit,
isIdContinue,
isIdStart,
isLatinLetter,
isLeadSurrogate,
isLineTerminator,
isOctalDigit,
isTrailSurrogate,
isValidLoneUnicodeProperty,
isValidUnicodeProperty,
isValidUnicode,
} from "./unicode"
function isSyntaxCharacter(cp: number): boolean {
return (
cp === CircumflexAccent ||
cp === DollarSign ||
cp === ReverseSolidus ||
cp === FullStop ||
cp === Asterisk ||
cp === PlusSign ||
cp === QuestionMark ||
cp === LeftParenthesis ||
cp === RightParenthesis ||
cp === LeftSquareBracket ||
cp === RightSquareBracket ||
cp === LeftCurlyBracket ||
cp === RightCurlyBracket ||
cp === VerticalLine
)
}
function isRegExpIdentifierStart(cp: number): boolean {
return isIdStart(cp) || cp === DollarSign || cp === LowLine
}
function isRegExpIdentifierPart(cp: number): boolean {
return (
isIdContinue(cp) ||
cp === DollarSign ||
cp === LowLine ||
cp === ZeroWidthNonJoiner ||
cp === ZeroWidthJoiner
)
}
function isUnicodePropertyNameCharacter(cp: number): boolean {
return isLatinLetter(cp) || cp === LowLine
}
function isUnicodePropertyValueCharacter(cp: number): boolean {
return isUnicodePropertyNameCharacter(cp) || isDecimalDigit(cp)
}
export namespace RegExpValidator {
/**
* The options for RegExpValidator construction.
*/
export interface Options {
/**
* The flag to disable Annex B syntax. Default is `false`.
*/
strict?: boolean
/**
* ECMAScript version. Default is `2022`.
* - `2015` added `u` and `y` flags.
* - `2018` added `s` flag, Named Capturing Group, Lookbehind Assertion,
* and Unicode Property Escape.
* - `2019`, `2020`, and `2021` added more valid Unicode Property Escapes.
* - `2022` added `d` flag.
*/
ecmaVersion?: EcmaVersion
/**
* A function that is called when the validator entered a RegExp literal.
* @param start The 0-based index of the first character.
*/
onLiteralEnter?(start: number): void
/**
* A function that is called when the validator left a RegExp literal.
* @param start The 0-based index of the first character.
* @param end The next 0-based index of the last character.
*/
onLiteralLeave?(start: number, end: number): void
/**
* A function that is called when the validator found flags.
* @param start The 0-based index of the first character.
* @param end The next 0-based index of the last character.
* @param global `g` flag.
* @param ignoreCase `i` flag.
* @param multiline `m` flag.
* @param unicode `u` flag.
* @param sticky `y` flag.
* @param dotAll `s` flag.
* @param hasIndices `d` flag.
*/
onFlags?(
start: number,
end: number,
global: boolean,
ignoreCase: boolean,
multiline: boolean,
unicode: boolean,
sticky: boolean,
dotAll: boolean,
hasIndices: boolean,
): void
/**
* A function that is called when the validator entered a pattern.
* @param start The 0-based index of the first character.
*/
onPatternEnter?(start: number): void
/**
* A function that is called when the validator left a pattern.
* @param start The 0-based index of the first character.
* @param end The next 0-based index of the last character.
*/
onPatternLeave?(start: number, end: number): void
/**
* A function that is called when the validator entered a disjunction.
* @param start The 0-based index of the first character.
*/
onDisjunctionEnter?(start: number): void
/**
* A function that is called when the validator left a disjunction.
* @param start The 0-based index of the first character.
* @param end The next 0-based index of the last character.
*/
onDisjunctionLeave?(start: number, end: number): void
/**
* A function that is called when the validator entered an alternative.
* @param start The 0-based index of the first character.
* @param index The 0-based index of alternatives in a disjunction.
*/
onAlternativeEnter?(start: number, index: number): void
/**
* A function that is called when the validator left an alternative.
* @param start The 0-based index of the first character.
* @param end The next 0-based index of the last character.
* @param index The 0-based index of alternatives in a disjunction.
*/
onAlternativeLeave?(start: number, end: number, index: number): void
/**
* A function that is called when the validator entered an uncapturing group.
* @param start The 0-based index of the first character.
*/
onGroupEnter?(start: number): void
/**
* A function that is called when the validator left an uncapturing group.
* @param start The 0-based index of the first character.
* @param end The next 0-based index of the last character.
*/
onGroupLeave?(start: number, end: number): void
/**
* A function that is called when the validator entered a capturing group.
* @param start The 0-based index of the first character.
* @param name The group name.
*/
onCapturingGroupEnter?(start: number, name: string | null): void
/**
* A function that is called when the validator left a capturing group.
* @param start The 0-based index of the first character.
* @param end The next 0-based index of the last character.
* @param name The group name.
*/
onCapturingGroupLeave?(
start: number,
end: number,
name: string | null,
): void
/**
* A function that is called when the validator found a quantifier.
* @param start The 0-based index of the first character.
* @param end The next 0-based index of the last character.
* @param min The minimum number of repeating.
* @param max The maximum number of repeating.
* @param greedy The flag to choose the longest matching.
*/
onQuantifier?(
start: number,
end: number,
min: number,
max: number,
greedy: boolean,
): void
/**
* A function that is called when the validator entered a lookahead/lookbehind assertion.
* @param start The 0-based index of the first character.
* @param kind The kind of the assertion.
* @param negate The flag which represents that the assertion is negative.
*/
onLookaroundAssertionEnter?(
start: number,
kind: "lookahead" | "lookbehind",
negate: boolean,
): void
/**
* A function that is called when the validator left a lookahead/lookbehind assertion.
* @param start The 0-based index of the first character.
* @param end The next 0-based index of the last character.
* @param kind The kind of the assertion.
* @param negate The flag which represents that the assertion is negative.
*/
onLookaroundAssertionLeave?(
start: number,
end: number,
kind: "lookahead" | "lookbehind",
negate: boolean,
): void
/**
* A function that is called when the validator found an edge boundary assertion.
* @param start The 0-based index of the first character.
* @param end The next 0-based index of the last character.
* @param kind The kind of the assertion.
*/
onEdgeAssertion?(
start: number,
end: number,
kind: "start" | "end",
): void
/**
* A function that is called when the validator found a word boundary assertion.
* @param start The 0-based index of the first character.
* @param end The next 0-based index of the last character.
* @param kind The kind of the assertion.
* @param negate The flag which represents that the assertion is negative.
*/
onWordBoundaryAssertion?(
start: number,
end: number,
kind: "word",
negate: boolean,
): void
/**
* A function that is called when the validator found a dot.
* @param start The 0-based index of the first character.
* @param end The next 0-based index of the last character.
* @param kind The kind of the character set.
*/
onAnyCharacterSet?(start: number, end: number, kind: "any"): void
/**
* A function that is called when the validator found a character set escape.
* @param start The 0-based index of the first character.
* @param end The next 0-based index of the last character.
* @param kind The kind of the character set.
* @param negate The flag which represents that the character set is negative.
*/
onEscapeCharacterSet?(
start: number,
end: number,
kind: "digit" | "space" | "word",
negate: boolean,
): void
/**
* A function that is called when the validator found a Unicode proerty escape.
* @param start The 0-based index of the first character.
* @param end The next 0-based index of the last character.
* @param kind The kind of the character set.
* @param key The property name.
* @param value The property value.
* @param negate The flag which represents that the character set is negative.
*/
onUnicodePropertyCharacterSet?(
start: number,
end: number,
kind: "property",
key: string,
value: string | null,
negate: boolean,
): void
/**
* A function that is called when the validator found a character.
* @param start The 0-based index of the first character.
* @param end The next 0-based index of the last character.
* @param value The code point of the character.
*/
onCharacter?(start: number, end: number, value: number): void
/**
* A function that is called when the validator found a backreference.
* @param start The 0-based index of the first character.
* @param end The next 0-based index of the last character.
* @param ref The key of the referred capturing group.
*/
onBackreference?(start: number, end: number, ref: number | string): void
/**
* A function that is called when the validator entered a character class.
* @param start The 0-based index of the first character.
* @param negate The flag which represents that the character class is negative.
*/
onCharacterClassEnter?(start: number, negate: boolean): void
/**
* A function that is called when the validator left a character class.
* @param start The 0-based index of the first character.
* @param end The next 0-based index of the last character.
* @param negate The flag which represents that the character class is negative.
*/
onCharacterClassLeave?(
start: number,
end: number,
negate: boolean,
): void
/**
* A function that is called when the validator found a character class range.
* @param start The 0-based index of the first character.
* @param end The next 0-based index of the last character.
* @param min The minimum code point of the range.
* @param max The maximum code point of the range.
*/
onCharacterClassRange?(
start: number,
end: number,
min: number,
max: number,
): void
}
}
/**
* The regular expression validator.
*/
export class RegExpValidator {
private readonly _options: RegExpValidator.Options
private readonly _reader = new Reader()
private _uFlag = false
private _nFlag = false
private _lastIntValue = 0
private _lastMinValue = 0
private _lastMaxValue = 0
private _lastStrValue = ""
private _lastKeyValue = ""
private _lastValValue = ""
private _lastAssertionIsQuantifiable = false
private _numCapturingParens = 0
private _groupNames = new Set<string>()
private _backreferenceNames = new Set<string>()
/**
* Initialize this validator.
* @param options The options of validator.
*/
public constructor(options?: RegExpValidator.Options) {
this._options = options || {}
}
/**
* Validate a regular expression literal. E.g. "/abc/g"
* @param source The source code to validate.
* @param start The start index in the source code.
* @param end The end index in the source code.
*/
public validateLiteral(
source: string,
start = 0,
end: number = source.length,
): void {
this._uFlag = this._nFlag = false
this.reset(source, start, end)
this.onLiteralEnter(start)
if (this.eat(Solidus) && this.eatRegExpBody() && this.eat(Solidus)) {
const flagStart = this.index
const uFlag = source.includes("u", flagStart)
this.validateFlags(source, flagStart, end)
this.validatePattern(source, start + 1, flagStart - 1, uFlag)
} else if (start >= end) {
this.raise("Empty")
} else {
const c = String.fromCodePoint(this.currentCodePoint)
this.raise(`Unexpected character '${c}'`)
}
this.onLiteralLeave(start, end)
}
/**
* Validate a regular expression flags. E.g. "gim"
* @param source The source code to validate.
* @param start The start index in the source code.
* @param end The end index in the source code.
*/
public validateFlags(
source: string,
start = 0,
end: number = source.length,
): void {
const existingFlags = new Set<number>()
let global = false
let ignoreCase = false
let multiline = false
let sticky = false
let unicode = false
let dotAll = false
let hasIndices = false
for (let i = start; i < end; ++i) {
const flag = source.charCodeAt(i)
if (existingFlags.has(flag)) {
this.raise(`Duplicated flag '${source[i]}'`)
}
existingFlags.add(flag)
if (flag === LatinSmallLetterG) {
global = true
} else if (flag === LatinSmallLetterI) {
ignoreCase = true
} else if (flag === LatinSmallLetterM) {
multiline = true
} else if (flag === LatinSmallLetterU && this.ecmaVersion >= 2015) {
unicode = true
} else if (flag === LatinSmallLetterY && this.ecmaVersion >= 2015) {
sticky = true
} else if (flag === LatinSmallLetterS && this.ecmaVersion >= 2018) {
dotAll = true
} else if (flag === LatinSmallLetterD && this.ecmaVersion >= 2022) {
hasIndices = true
} else {
this.raise(`Invalid flag '${source[i]}'`)
}
}
this.onFlags(
start,
end,
global,
ignoreCase,
multiline,
unicode,
sticky,
dotAll,
hasIndices,
)
}
/**
* Validate a regular expression pattern. E.g. "abc"
* @param source The source code to validate.
* @param start The start index in the source code.
* @param end The end index in the source code.
* @param uFlag The flag to set unicode mode.
*/
public validatePattern(
source: string,
start = 0,
end: number = source.length,
uFlag = false,
): void {
this._uFlag = uFlag && this.ecmaVersion >= 2015
this._nFlag = uFlag && this.ecmaVersion >= 2018
this.reset(source, start, end)
this.consumePattern()
if (
!this._nFlag &&
this.ecmaVersion >= 2018 &&
this._groupNames.size > 0
) {
this._nFlag = true
this.rewind(start)
this.consumePattern()
}
}
// #region Delegate for Options
private get strict() {
return Boolean(this._options.strict || this._uFlag)
}
private get ecmaVersion() {
return this._options.ecmaVersion || 2022
}
private onLiteralEnter(start: number): void {
if (this._options.onLiteralEnter) {
this._options.onLiteralEnter(start)
}
}
private onLiteralLeave(start: number, end: number): void {
if (this._options.onLiteralLeave) {
this._options.onLiteralLeave(start, end)
}
}
private onFlags(
start: number,
end: number,
global: boolean,
ignoreCase: boolean,
multiline: boolean,
unicode: boolean,
sticky: boolean,
dotAll: boolean,
hasIndices: boolean,
): void {
if (this._options.onFlags) {
this._options.onFlags(
start,
end,
global,
ignoreCase,
multiline,
unicode,
sticky,
dotAll,
hasIndices,
)
}
}
private onPatternEnter(start: number): void {
if (this._options.onPatternEnter) {
this._options.onPatternEnter(start)
}
}
private onPatternLeave(start: number, end: number): void {
if (this._options.onPatternLeave) {
this._options.onPatternLeave(start, end)
}
}
private onDisjunctionEnter(start: number): void {
if (this._options.onDisjunctionEnter) {
this._options.onDisjunctionEnter(start)
}
}
private onDisjunctionLeave(start: number, end: number): void {
if (this._options.onDisjunctionLeave) {
this._options.onDisjunctionLeave(start, end)
}
}
private onAlternativeEnter(start: number, index: number): void {
if (this._options.onAlternativeEnter) {
this._options.onAlternativeEnter(start, index)
}
}
private onAlternativeLeave(
start: number,
end: number,
index: number,
): void {
if (this._options.onAlternativeLeave) {
this._options.onAlternativeLeave(start, end, index)
}
}
private onGroupEnter(start: number): void {
if (this._options.onGroupEnter) {
this._options.onGroupEnter(start)
}
}
private onGroupLeave(start: number, end: number): void {
if (this._options.onGroupLeave) {
this._options.onGroupLeave(start, end)
}
}
private onCapturingGroupEnter(start: number, name: string | null): void {
if (this._options.onCapturingGroupEnter) {
this._options.onCapturingGroupEnter(start, name)
}
}
private onCapturingGroupLeave(
start: number,
end: number,
name: string | null,
): void {
if (this._options.onCapturingGroupLeave) {
this._options.onCapturingGroupLeave(start, end, name)
}
}
private onQuantifier(
start: number,
end: number,
min: number,
max: number,
greedy: boolean,
): void {
if (this._options.onQuantifier) {
this._options.onQuantifier(start, end, min, max, greedy)
}
}
private onLookaroundAssertionEnter(
start: number,
kind: "lookahead" | "lookbehind",
negate: boolean,
): void {
if (this._options.onLookaroundAssertionEnter) {
this._options.onLookaroundAssertionEnter(start, kind, negate)
}
}
private onLookaroundAssertionLeave(
start: number,
end: number,
kind: "lookahead" | "lookbehind",
negate: boolean,
): void {
if (this._options.onLookaroundAssertionLeave) {
this._options.onLookaroundAssertionLeave(start, end, kind, negate)
}
}
private onEdgeAssertion(
start: number,
end: number,
kind: "start" | "end",
): void {
if (this._options.onEdgeAssertion) {
this._options.onEdgeAssertion(start, end, kind)
}
}
private onWordBoundaryAssertion(
start: number,
end: number,
kind: "word",
negate: boolean,
): void {
if (this._options.onWordBoundaryAssertion) {
this._options.onWordBoundaryAssertion(start, end, kind, negate)
}
}
private onAnyCharacterSet(start: number, end: number, kind: "any"): void {
if (this._options.onAnyCharacterSet) {
this._options.onAnyCharacterSet(start, end, kind)
}
}
private onEscapeCharacterSet(
start: number,
end: number,
kind: "digit" | "space" | "word",
negate: boolean,
): void {
if (this._options.onEscapeCharacterSet) {
this._options.onEscapeCharacterSet(start, end, kind, negate)
}
}
private onUnicodePropertyCharacterSet(
start: number,
end: number,
kind: "property",
key: string,
value: string | null,
negate: boolean,
): void {
if (this._options.onUnicodePropertyCharacterSet) {
this._options.onUnicodePropertyCharacterSet(
start,
end,
kind,
key,
value,
negate,
)
}
}
private onCharacter(start: number, end: number, value: number): void {
if (this._options.onCharacter) {
this._options.onCharacter(start, end, value)
}
}
private onBackreference(
start: number,
end: number,
ref: number | string,
): void {
if (this._options.onBackreference) {
this._options.onBackreference(start, end, ref)
}
}
private onCharacterClassEnter(start: number, negate: boolean): void {
if (this._options.onCharacterClassEnter) {
this._options.onCharacterClassEnter(start, negate)
}
}
private onCharacterClassLeave(
start: number,
end: number,
negate: boolean,
): void {
if (this._options.onCharacterClassLeave) {
this._options.onCharacterClassLeave(start, end, negate)
}
}
private onCharacterClassRange(
start: number,
end: number,
min: number,
max: number,
): void {
if (this._options.onCharacterClassRange) {
this._options.onCharacterClassRange(start, end, min, max)
}
}
// #endregion
// #region Delegate for Reader
private get source(): string {
return this._reader.source
}
private get index(): number {
return this._reader.index
}
private get currentCodePoint(): number {
return this._reader.currentCodePoint
}
private get nextCodePoint(): number {
return this._reader.nextCodePoint
}
private get nextCodePoint2(): number {
return this._reader.nextCodePoint2
}
private get nextCodePoint3(): number {
return this._reader.nextCodePoint3
}
private reset(source: string, start: number, end: number): void {
this._reader.reset(source, start, end, this._uFlag)
}
private rewind(index: number): void {
this._reader.rewind(index)
}
private advance(): void {
this._reader.advance()
}
private eat(cp: number): boolean {
return this._reader.eat(cp)
}
private eat2(cp1: number, cp2: number): boolean {
return this._reader.eat2(cp1, cp2)
}
private eat3(cp1: number, cp2: number, cp3: number): boolean {
return this._reader.eat3(cp1, cp2, cp3)
}
// #endregion
private raise(message: string): never {
throw new RegExpSyntaxError(
this.source,
this._uFlag,
this.index,
message,
)
}
// https://www.ecma-international.org/ecma-262/8.0/#prod-RegularExpressionBody
private eatRegExpBody(): boolean {
const start = this.index
let inClass = false
let escaped = false
for (;;) {
const cp = this.currentCodePoint
if (cp === -1 || isLineTerminator(cp)) {
const kind = inClass ? "character class" : "regular expression"
this.raise(`Unterminated ${kind}`)
}
if (escaped) {
escaped = false
} else if (cp === ReverseSolidus) {
escaped = true
} else if (cp === LeftSquareBracket) {
inClass = true
} else if (cp === RightSquareBracket) {
inClass = false
} else if (
(cp === Solidus && !inClass) ||
(cp === Asterisk && this.index === start)
) {
break
}
this.advance()
}
return this.index !== start
}
/**
* Validate the next characters as a RegExp `Pattern` production.
* ```
* Pattern[U, N]::
* Disjunction[?U, ?N]
* ```
*/
private consumePattern(): void {
const start = this.index
this._numCapturingParens = this.countCapturingParens()
this._groupNames.clear()
this._backreferenceNames.clear()
this.onPatternEnter(start)
this.consumeDisjunction()
const cp = this.currentCodePoint
if (this.currentCodePoint !== -1) {
if (cp === RightParenthesis) {
this.raise("Unmatched ')'")
}
if (cp === ReverseSolidus) {
this.raise("\\ at end of pattern")
}
if (cp === RightSquareBracket || cp === RightCurlyBracket) {
this.raise("Lone quantifier brackets")
}
const c = String.fromCodePoint(cp)
this.raise(`Unexpected character '${c}'`)
}
for (const name of this._backreferenceNames) {
if (!this._groupNames.has(name)) {
this.raise("Invalid named capture referenced")
}
}
this.onPatternLeave(start, this.index)
}
/**
* Count capturing groups in the current source code.
* @returns The number of capturing groups.
*/
private countCapturingParens(): number {
const start = this.index
let inClass = false
let escaped = false
let count = 0
let cp = 0
while ((cp = this.currentCodePoint) !== -1) {
if (escaped) {
escaped = false
} else if (cp === ReverseSolidus) {
escaped = true
} else if (cp === LeftSquareBracket) {
inClass = true
} else if (cp === RightSquareBracket) {
inClass = false
} else if (
cp === LeftParenthesis &&
!inClass &&
(this.nextCodePoint !== QuestionMark ||
(this.nextCodePoint2 === LessThanSign &&
this.nextCodePoint3 !== EqualsSign &&
this.nextCodePoint3 !== ExclamationMark))
) {
count += 1
}
this.advance()
}
this.rewind(start)
return count
}
/**
* Validate the next characters as a RegExp `Disjunction` production.
* ```
* Disjunction[U, N]::
* Alternative[?U, ?N]
* Alternative[?U, ?N] `|` Disjunction[?U, ?N]
* ```
*/
private consumeDisjunction(): void {
const start = this.index
let i = 0
this.onDisjunctionEnter(start)
do {
this.consumeAlternative(i++)
} while (this.eat(VerticalLine))
if (this.consumeQuantifier(true)) {
this.raise("Nothing to repeat")
}
if (this.eat(LeftCurlyBracket)) {
this.raise("Lone quantifier brackets")
}
this.onDisjunctionLeave(start, this.index)
}
/**
* Validate the next characters as a RegExp `Alternative` production.
* ```
* Alternative[U, N]::