啊鑫
7 天以前 fca192d3c38c5dcfbb6ace8bc71d6078f6a079b2
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
/*
    MIT License http://www.opensource.org/licenses/mit-license.php
    Author Tobias Koppers @sokra
*/
 
"use strict";
 
/**
 * @typedef {object} CssTokenCallbacks
 * @property {((input: string, start: number, end: number, innerStart: number, innerEnd: number) => number)=} url
 * @property {((input: string, start: number, end: number) => number)=} comment
 * @property {((input: string, start: number, end: number) => number)=} string
 * @property {((input: string, start: number, end: number) => number)=} leftParenthesis
 * @property {((input: string, start: number, end: number) => number)=} rightParenthesis
 * @property {((input: string, start: number, end: number) => number)=} function
 * @property {((input: string, start: number, end: number) => number)=} colon
 * @property {((input: string, start: number, end: number) => number)=} atKeyword
 * @property {((input: string, start: number, end: number) => number)=} delim
 * @property {((input: string, start: number, end: number) => number)=} identifier
 * @property {((input: string, start: number, end: number, isId: boolean) => number)=} hash
 * @property {((input: string, start: number, end: number) => number)=} leftCurlyBracket
 * @property {((input: string, start: number, end: number) => number)=} rightCurlyBracket
 * @property {((input: string, start: number, end: number) => number)=} semicolon
 * @property {((input: string, start: number, end: number) => number)=} comma
 * @property {(() => boolean)=} needTerminate
 */
 
/** @typedef {(input: string, pos: number, callbacks: CssTokenCallbacks) => number} CharHandler */
 
// spec: https://drafts.csswg.org/css-syntax/
 
const CC_LINE_FEED = "\n".charCodeAt(0);
const CC_CARRIAGE_RETURN = "\r".charCodeAt(0);
const CC_FORM_FEED = "\f".charCodeAt(0);
 
const CC_TAB = "\t".charCodeAt(0);
const CC_SPACE = " ".charCodeAt(0);
 
const CC_SOLIDUS = "/".charCodeAt(0);
const CC_REVERSE_SOLIDUS = "\\".charCodeAt(0);
const CC_ASTERISK = "*".charCodeAt(0);
 
const CC_LEFT_PARENTHESIS = "(".charCodeAt(0);
const CC_RIGHT_PARENTHESIS = ")".charCodeAt(0);
const CC_LEFT_CURLY = "{".charCodeAt(0);
const CC_RIGHT_CURLY = "}".charCodeAt(0);
const CC_LEFT_SQUARE = "[".charCodeAt(0);
const CC_RIGHT_SQUARE = "]".charCodeAt(0);
 
const CC_QUOTATION_MARK = '"'.charCodeAt(0);
const CC_APOSTROPHE = "'".charCodeAt(0);
 
const CC_FULL_STOP = ".".charCodeAt(0);
const CC_COLON = ":".charCodeAt(0);
const CC_SEMICOLON = ";".charCodeAt(0);
const CC_COMMA = ",".charCodeAt(0);
const CC_PERCENTAGE = "%".charCodeAt(0);
const CC_AT_SIGN = "@".charCodeAt(0);
 
const CC_LOW_LINE = "_".charCodeAt(0);
const CC_LOWER_A = "a".charCodeAt(0);
const CC_LOWER_F = "f".charCodeAt(0);
const CC_LOWER_E = "e".charCodeAt(0);
const CC_LOWER_U = "u".charCodeAt(0);
const CC_LOWER_Z = "z".charCodeAt(0);
const CC_UPPER_A = "A".charCodeAt(0);
const CC_UPPER_F = "F".charCodeAt(0);
const CC_UPPER_E = "E".charCodeAt(0);
const CC_UPPER_U = "E".charCodeAt(0);
const CC_UPPER_Z = "Z".charCodeAt(0);
const CC_0 = "0".charCodeAt(0);
const CC_9 = "9".charCodeAt(0);
 
const CC_NUMBER_SIGN = "#".charCodeAt(0);
const CC_PLUS_SIGN = "+".charCodeAt(0);
const CC_HYPHEN_MINUS = "-".charCodeAt(0);
 
const CC_LESS_THAN_SIGN = "<".charCodeAt(0);
const CC_GREATER_THAN_SIGN = ">".charCodeAt(0);
 
/** @type {CharHandler} */
const consumeSpace = (input, pos, _callbacks) => {
    // Consume as much whitespace as possible.
    while (_isWhiteSpace(input.charCodeAt(pos))) {
        pos++;
    }
 
    // Return a <whitespace-token>.
    return pos;
};
 
// U+000A LINE FEED. Note that U+000D CARRIAGE RETURN and U+000C FORM FEED are not included in this definition,
// as they are converted to U+000A LINE FEED during preprocessing.
//
// Replace any U+000D CARRIAGE RETURN (CR) code points, U+000C FORM FEED (FF) code points, or pairs of U+000D CARRIAGE RETURN (CR) followed by U+000A LINE FEED (LF) in input by a single U+000A LINE FEED (LF) code point.
 
/**
 * @param {number} cc char code
 * @returns {boolean} true, if cc is a newline
 */
const _isNewline = cc =>
    cc === CC_LINE_FEED || cc === CC_CARRIAGE_RETURN || cc === CC_FORM_FEED;
 
/**
 * @param {number} cc char code
 * @param {string} input input
 * @param {number} pos position
 * @returns {number} position
 */
const consumeExtraNewline = (cc, input, pos) => {
    if (cc === CC_CARRIAGE_RETURN && input.charCodeAt(pos) === CC_LINE_FEED) {
        pos++;
    }
 
    return pos;
};
 
/**
 * @param {number} cc char code
 * @returns {boolean} true, if cc is a space (U+0009 CHARACTER TABULATION or U+0020 SPACE)
 */
const _isSpace = cc => cc === CC_TAB || cc === CC_SPACE;
 
/**
 * @param {number} cc char code
 * @returns {boolean} true, if cc is a whitespace
 */
const _isWhiteSpace = cc => _isNewline(cc) || _isSpace(cc);
 
/**
 * ident-start code point
 *
 * A letter, a non-ASCII code point, or U+005F LOW LINE (_).
 * @param {number} cc char code
 * @returns {boolean} true, if cc is a start code point of an identifier
 */
const isIdentStartCodePoint = cc =>
    (cc >= CC_LOWER_A && cc <= CC_LOWER_Z) ||
    (cc >= CC_UPPER_A && cc <= CC_UPPER_Z) ||
    cc === CC_LOW_LINE ||
    cc >= 0x80;
 
/** @type {CharHandler} */
const consumeDelimToken = (input, pos, _callbacks) =>
    // Return a <delim-token> with its value set to the current input code point.
    pos;
 
/** @type {CharHandler} */
const consumeComments = (input, pos, callbacks) => {
    // This section describes how to consume comments from a stream of code points. It returns nothing.
    // If the next two input code point are U+002F SOLIDUS (/) followed by a U+002A ASTERISK (*),
    // consume them and all following code points up to and including the first U+002A ASTERISK (*)
    // followed by a U+002F SOLIDUS (/), or up to an EOF code point.
    // Return to the start of this step.
    while (
        input.charCodeAt(pos) === CC_SOLIDUS &&
        input.charCodeAt(pos + 1) === CC_ASTERISK
    ) {
        const start = pos;
        pos += 2;
 
        for (;;) {
            if (pos === input.length) {
                // If the preceding paragraph ended by consuming an EOF code point, this is a parse error.
                return pos;
            }
 
            if (
                input.charCodeAt(pos) === CC_ASTERISK &&
                input.charCodeAt(pos + 1) === CC_SOLIDUS
            ) {
                pos += 2;
 
                if (callbacks.comment) {
                    pos = callbacks.comment(input, start, pos);
                }
 
                break;
            }
 
            pos++;
        }
    }
 
    return pos;
};
 
/**
 * @param {number} cc char code
 * @returns {boolean} true, if cc is a hex digit
 */
const _isHexDigit = cc =>
    _isDigit(cc) ||
    (cc >= CC_UPPER_A && cc <= CC_UPPER_F) ||
    (cc >= CC_LOWER_A && cc <= CC_LOWER_F);
 
/**
 * @param {string} input input
 * @param {number} pos position
 * @returns {number} position
 */
const _consumeAnEscapedCodePoint = (input, pos) => {
    // This section describes how to consume an escaped code point.
    // It assumes that the U+005C REVERSE SOLIDUS (\) has already been consumed and that the next input code point has already been verified to be part of a valid escape.
    // It will return a code point.
 
    // Consume the next input code point.
    const cc = input.charCodeAt(pos);
    pos++;
 
    // EOF
    // This is a parse error. Return U+FFFD REPLACEMENT CHARACTER (�).
    if (pos === input.length) {
        return pos;
    }
 
    // hex digit
    // Consume as many hex digits as possible, but no more than 5.
    // Note that this means 1-6 hex digits have been consumed in total.
    // If the next input code point is whitespace, consume it as well.
    // Interpret the hex digits as a hexadecimal number.
    // If this number is zero, or is for a surrogate, or is greater than the maximum allowed code point, return U+FFFD REPLACEMENT CHARACTER (�).
    // Otherwise, return the code point with that value.
    if (_isHexDigit(cc)) {
        for (let i = 0; i < 5; i++) {
            if (_isHexDigit(input.charCodeAt(pos))) {
                pos++;
            }
        }
 
        const cc = input.charCodeAt(pos);
 
        if (_isWhiteSpace(cc)) {
            pos++;
            pos = consumeExtraNewline(cc, input, pos);
        }
 
        return pos;
    }
 
    // anything else
    // Return the current input code point.
    return pos;
};
 
/** @type {CharHandler} */
const consumeAStringToken = (input, pos, callbacks) => {
    // This section describes how to consume a string token from a stream of code points.
    // It returns either a <string-token> or <bad-string-token>.
    //
    // This algorithm may be called with an ending code point, which denotes the code point that ends the string.
    // If an ending code point is not specified, the current input code point is used.
    const start = pos - 1;
    const endingCodePoint = input.charCodeAt(pos - 1);
 
    // Initially create a <string-token> with its value set to the empty string.
 
    // Repeatedly consume the next input code point from the stream:
    for (;;) {
        // EOF
        // This is a parse error. Return the <string-token>.
        if (pos === input.length) {
            if (callbacks.string !== undefined) {
                return callbacks.string(input, start, pos);
            }
 
            return pos;
        }
 
        const cc = input.charCodeAt(pos);
        pos++;
 
        // ending code point
        // Return the <string-token>.
        if (cc === endingCodePoint) {
            if (callbacks.string !== undefined) {
                return callbacks.string(input, start, pos);
            }
 
            return pos;
        }
        // newline
        // This is a parse error.
        // Reconsume the current input code point, create a <bad-string-token>, and return it.
        else if (_isNewline(cc)) {
            pos--;
            // bad string
            return pos;
        }
        // U+005C REVERSE SOLIDUS (\)
        else if (cc === CC_REVERSE_SOLIDUS) {
            // If the next input code point is EOF, do nothing.
            if (pos === input.length) {
                return pos;
            }
            // Otherwise, if the next input code point is a newline, consume it.
            else if (_isNewline(input.charCodeAt(pos))) {
                const cc = input.charCodeAt(pos);
                pos++;
                pos = consumeExtraNewline(cc, input, pos);
            }
            // Otherwise, (the stream starts with a valid escape) consume an escaped code point and append the returned code point to the <string-token>’s value.
            else if (_ifTwoCodePointsAreValidEscape(input, pos)) {
                pos = _consumeAnEscapedCodePoint(input, pos);
            }
        }
        // anything else
        // Append the current input code point to the <string-token>’s value.
        else {
            // Append
        }
    }
};
 
/**
 * @param {number} cc char code
 * @param {number} q char code
 * @returns {boolean} is non-ASCII code point
 */
const isNonASCIICodePoint = (cc, q) =>
    // Simplify
    cc > 0x80;
/**
 * @param {number} cc char code
 * @returns {boolean} is letter
 */
const isLetter = cc =>
    (cc >= CC_LOWER_A && cc <= CC_LOWER_Z) ||
    (cc >= CC_UPPER_A && cc <= CC_UPPER_Z);
 
/**
 * @param {number} cc char code
 * @param {number} q char code
 * @returns {boolean} is identifier start code
 */
const _isIdentStartCodePoint = (cc, q) =>
    isLetter(cc) || isNonASCIICodePoint(cc, q) || cc === CC_LOW_LINE;
 
/**
 * @param {number} cc char code
 * @param {number} q char code
 * @returns {boolean} is identifier code
 */
const _isIdentCodePoint = (cc, q) =>
    _isIdentStartCodePoint(cc, q) || _isDigit(cc) || cc === CC_HYPHEN_MINUS;
/**
 * @param {number} cc char code
 * @returns {boolean} is digit
 */
const _isDigit = cc => cc >= CC_0 && cc <= CC_9;
 
/**
 * @param {string} input input
 * @param {number} pos position
 * @param {number=} f first code point
 * @param {number=} s second code point
 * @returns {boolean} true if two code points are a valid escape
 */
const _ifTwoCodePointsAreValidEscape = (input, pos, f, s) => {
    // This section describes how to check if two code points are a valid escape.
    // The algorithm described here can be called explicitly with two code points, or can be called with the input stream itself.
    // In the latter case, the two code points in question are the current input code point and the next input code point, in that order.
 
    // Note: This algorithm will not consume any additional code point.
    const first = f || input.charCodeAt(pos - 1);
    const second = s || input.charCodeAt(pos);
 
    // If the first code point is not U+005C REVERSE SOLIDUS (\), return false.
    if (first !== CC_REVERSE_SOLIDUS) return false;
    // Otherwise, if the second code point is a newline, return false.
    if (_isNewline(second)) return false;
    // Otherwise, return true.
    return true;
};
 
/**
 * @param {string} input input
 * @param {number} pos position
 * @param {number=} f first
 * @param {number=} s second
 * @param {number=} t third
 * @returns {boolean} true, if input at pos starts an identifier
 */
const _ifThreeCodePointsWouldStartAnIdentSequence = (input, pos, f, s, t) => {
    // This section describes how to check if three code points would start an ident sequence.
    // The algorithm described here can be called explicitly with three code points, or can be called with the input stream itself.
    // In the latter case, the three code points in question are the current input code point and the next two input code points, in that order.
 
    // Note: This algorithm will not consume any additional code points.
 
    const first = f || input.charCodeAt(pos - 1);
    const second = s || input.charCodeAt(pos);
    const third = t || input.charCodeAt(pos + 1);
 
    // Look at the first code point:
 
    // U+002D HYPHEN-MINUS
    if (first === CC_HYPHEN_MINUS) {
        // If the second code point is an ident-start code point or a U+002D HYPHEN-MINUS
        // or a U+002D HYPHEN-MINUS, or the second and third code points are a valid escape, return true.
        if (
            _isIdentStartCodePoint(second, pos) ||
            second === CC_HYPHEN_MINUS ||
            _ifTwoCodePointsAreValidEscape(input, pos, second, third)
        ) {
            return true;
        }
        return false;
    }
    // ident-start code point
    else if (_isIdentStartCodePoint(first, pos - 1)) {
        return true;
    }
    // U+005C REVERSE SOLIDUS (\)
    // If the first and second code points are a valid escape, return true. Otherwise, return false.
    else if (first === CC_REVERSE_SOLIDUS) {
        if (_ifTwoCodePointsAreValidEscape(input, pos, first, second)) {
            return true;
        }
 
        return false;
    }
    // anything else
    // Return false.
    return false;
};
 
/**
 * @param {string} input input
 * @param {number} pos position
 * @param {number=} f first
 * @param {number=} s second
 * @param {number=} t third
 * @returns {boolean} true, if input at pos starts an identifier
 */
const _ifThreeCodePointsWouldStartANumber = (input, pos, f, s, t) => {
    // This section describes how to check if three code points would start a number.
    // The algorithm described here can be called explicitly with three code points, or can be called with the input stream itself.
    // In the latter case, the three code points in question are the current input code point and the next two input code points, in that order.
 
    // Note: This algorithm will not consume any additional code points.
 
    const first = f || input.charCodeAt(pos - 1);
    const second = s || input.charCodeAt(pos);
    const third = t || input.charCodeAt(pos);
 
    // Look at the first code point:
 
    // U+002B PLUS SIGN (+)
    // U+002D HYPHEN-MINUS (-)
    //
    // If the second code point is a digit, return true.
    // Otherwise, if the second code point is a U+002E FULL STOP (.) and the third code point is a digit, return true.
    // Otherwise, return false.
    if (first === CC_PLUS_SIGN || first === CC_HYPHEN_MINUS) {
        if (_isDigit(second)) {
            return true;
        } else if (second === CC_FULL_STOP && _isDigit(third)) {
            return true;
        }
 
        return false;
    }
    // U+002E FULL STOP (.)
    // If the second code point is a digit, return true. Otherwise, return false.
    else if (first === CC_FULL_STOP) {
        if (_isDigit(second)) {
            return true;
        }
 
        return false;
    }
    // digit
    // Return true.
    else if (_isDigit(first)) {
        return true;
    }
 
    // anything else
    // Return false.
    return false;
};
 
/** @type {CharHandler} */
const consumeNumberSign = (input, pos, callbacks) => {
    // If the next input code point is an ident code point or the next two input code points are a valid escape, then:
    // - Create a <hash-token>.
    // - If the next 3 input code points would start an ident sequence, set the <hash-token>’s type flag to "id".
    // - Consume an ident sequence, and set the <hash-token>’s value to the returned string.
    // - Return the <hash-token>.
    const start = pos - 1;
    const first = input.charCodeAt(pos);
    const second = input.charCodeAt(pos + 1);
 
    if (
        _isIdentCodePoint(first, pos - 1) ||
        _ifTwoCodePointsAreValidEscape(input, pos, first, second)
    ) {
        const third = input.charCodeAt(pos + 2);
        let isId = false;
 
        if (
            _ifThreeCodePointsWouldStartAnIdentSequence(
                input,
                pos,
                first,
                second,
                third
            )
        ) {
            isId = true;
        }
 
        pos = _consumeAnIdentSequence(input, pos, callbacks);
 
        if (callbacks.hash !== undefined) {
            return callbacks.hash(input, start, pos, isId);
        }
 
        return pos;
    }
 
    // Otherwise, return a <delim-token> with its value set to the current input code point.
    return pos;
};
 
/** @type {CharHandler} */
const consumeHyphenMinus = (input, pos, callbacks) => {
    // If the input stream starts with a number, reconsume the current input code point, consume a numeric token, and return it.
    if (_ifThreeCodePointsWouldStartANumber(input, pos)) {
        pos--;
        return consumeANumericToken(input, pos, callbacks);
    }
    // Otherwise, if the next 2 input code points are U+002D HYPHEN-MINUS U+003E GREATER-THAN SIGN (->), consume them and return a <CDC-token>.
    else if (
        input.charCodeAt(pos) === CC_HYPHEN_MINUS &&
        input.charCodeAt(pos + 1) === CC_GREATER_THAN_SIGN
    ) {
        return pos + 2;
    }
    // Otherwise, if the input stream starts with an ident sequence, reconsume the current input code point, consume an ident-like token, and return it.
    else if (_ifThreeCodePointsWouldStartAnIdentSequence(input, pos)) {
        pos--;
        return consumeAnIdentLikeToken(input, pos, callbacks);
    }
 
    // Otherwise, return a <delim-token> with its value set to the current input code point.
    return pos;
};
 
/** @type {CharHandler} */
const consumeFullStop = (input, pos, callbacks) => {
    const start = pos - 1;
 
    // If the input stream starts with a number, reconsume the current input code point, consume a numeric token, and return it.
    if (_ifThreeCodePointsWouldStartANumber(input, pos)) {
        pos--;
        return consumeANumericToken(input, pos, callbacks);
    }
 
    // Otherwise, return a <delim-token> with its value set to the current input code point.
    if (callbacks.delim !== undefined) {
        return callbacks.delim(input, start, pos);
    }
 
    return pos;
};
 
/** @type {CharHandler} */
const consumePlusSign = (input, pos, callbacks) => {
    // If the input stream starts with a number, reconsume the current input code point, consume a numeric token, and return it.
    if (_ifThreeCodePointsWouldStartANumber(input, pos)) {
        pos--;
        return consumeANumericToken(input, pos, callbacks);
    }
 
    // Otherwise, return a <delim-token> with its value set to the current input code point.
    return pos;
};
 
/** @type {CharHandler} */
const _consumeANumber = (input, pos) => {
    // This section describes how to consume a number from a stream of code points.
    // It returns a numeric value, and a type which is either "integer" or "number".
 
    // Execute the following steps in order:
    // Initially set type to "integer". Let repr be the empty string.
 
    // If the next input code point is U+002B PLUS SIGN (+) or U+002D HYPHEN-MINUS (-), consume it and append it to repr.
    if (
        input.charCodeAt(pos) === CC_HYPHEN_MINUS ||
        input.charCodeAt(pos) === CC_PLUS_SIGN
    ) {
        pos++;
    }
 
    // While the next input code point is a digit, consume it and append it to repr.
    while (_isDigit(input.charCodeAt(pos))) {
        pos++;
    }
 
    // If the next 2 input code points are U+002E FULL STOP (.) followed by a digit, then:
    // 1. Consume the next input code point and append it to number part.
    // 2. While the next input code point is a digit, consume it and append it to number part.
    // 3. Set type to "number".
    if (
        input.charCodeAt(pos) === CC_FULL_STOP &&
        _isDigit(input.charCodeAt(pos + 1))
    ) {
        pos++;
 
        while (_isDigit(input.charCodeAt(pos))) {
            pos++;
        }
    }
 
    // If the next 2 or 3 input code points are U+0045 LATIN CAPITAL LETTER E (E) or U+0065 LATIN SMALL LETTER E (e), optionally followed by U+002D HYPHEN-MINUS (-) or U+002B PLUS SIGN (+), followed by a digit, then:
    // 1. Consume the next input code point.
    // 2. If the next input code point is "+" or "-", consume it and append it to exponent part.
    // 3. While the next input code point is a digit, consume it and append it to exponent part.
    // 4. Set type to "number".
    if (
        (input.charCodeAt(pos) === CC_LOWER_E ||
            input.charCodeAt(pos) === CC_UPPER_E) &&
        (((input.charCodeAt(pos + 1) === CC_HYPHEN_MINUS ||
            input.charCodeAt(pos + 1) === CC_PLUS_SIGN) &&
            _isDigit(input.charCodeAt(pos + 2))) ||
            _isDigit(input.charCodeAt(pos + 1)))
    ) {
        pos++;
 
        if (
            input.charCodeAt(pos) === CC_PLUS_SIGN ||
            input.charCodeAt(pos) === CC_HYPHEN_MINUS
        ) {
            pos++;
        }
 
        while (_isDigit(input.charCodeAt(pos))) {
            pos++;
        }
    }
 
    // Let value be the result of interpreting number part as a base-10 number.
 
    // If exponent part is non-empty, interpret it as a base-10 integer, then raise 10 to the power of the result, multiply it by value, and set value to that result.
 
    // Return value and type.
    return pos;
};
 
/** @type {CharHandler} */
const consumeANumericToken = (input, pos, callbacks) => {
    // This section describes how to consume a numeric token from a stream of code points.
    // It returns either a <number-token>, <percentage-token>, or <dimension-token>.
 
    // Consume a number and let number be the result.
    pos = _consumeANumber(input, pos, callbacks);
 
    // If the next 3 input code points would start an ident sequence, then:
    //
    // - Create a <dimension-token> with the same value and type flag as number, and a unit set initially to the empty string.
    // - Consume an ident sequence. Set the <dimension-token>’s unit to the returned value.
    // - Return the <dimension-token>.
 
    const first = input.charCodeAt(pos);
    const second = input.charCodeAt(pos + 1);
    const third = input.charCodeAt(pos + 2);
 
    if (
        _ifThreeCodePointsWouldStartAnIdentSequence(
            input,
            pos,
            first,
            second,
            third
        )
    ) {
        return _consumeAnIdentSequence(input, pos, callbacks);
    }
    // Otherwise, if the next input code point is U+0025 PERCENTAGE SIGN (%), consume it.
    // Create a <percentage-token> with the same value as number, and return it.
    else if (first === CC_PERCENTAGE) {
        return pos + 1;
    }
 
    // Otherwise, create a <number-token> with the same value and type flag as number, and return it.
    return pos;
};
 
/** @type {CharHandler} */
const consumeColon = (input, pos, callbacks) => {
    // Return a <colon-token>.
    if (callbacks.colon !== undefined) {
        return callbacks.colon(input, pos - 1, pos);
    }
    return pos;
};
 
/** @type {CharHandler} */
const consumeLeftParenthesis = (input, pos, callbacks) => {
    // Return a <(-token>.
    if (callbacks.leftParenthesis !== undefined) {
        return callbacks.leftParenthesis(input, pos - 1, pos);
    }
    return pos;
};
 
/** @type {CharHandler} */
const consumeRightParenthesis = (input, pos, callbacks) => {
    // Return a <)-token>.
    if (callbacks.rightParenthesis !== undefined) {
        return callbacks.rightParenthesis(input, pos - 1, pos);
    }
    return pos;
};
 
/** @type {CharHandler} */
const consumeLeftSquareBracket = (input, pos, callbacks) =>
    // Return a <]-token>.
    pos;
 
/** @type {CharHandler} */
const consumeRightSquareBracket = (input, pos, callbacks) =>
    // Return a <]-token>.
    pos;
 
/** @type {CharHandler} */
const consumeLeftCurlyBracket = (input, pos, callbacks) => {
    // Return a <{-token>.
    if (callbacks.leftCurlyBracket !== undefined) {
        return callbacks.leftCurlyBracket(input, pos - 1, pos);
    }
    return pos;
};
 
/** @type {CharHandler} */
const consumeRightCurlyBracket = (input, pos, callbacks) => {
    // Return a <}-token>.
    if (callbacks.rightCurlyBracket !== undefined) {
        return callbacks.rightCurlyBracket(input, pos - 1, pos);
    }
    return pos;
};
 
/** @type {CharHandler} */
const consumeSemicolon = (input, pos, callbacks) => {
    // Return a <semicolon-token>.
    if (callbacks.semicolon !== undefined) {
        return callbacks.semicolon(input, pos - 1, pos);
    }
    return pos;
};
 
/** @type {CharHandler} */
const consumeComma = (input, pos, callbacks) => {
    // Return a <comma-token>.
    if (callbacks.comma !== undefined) {
        return callbacks.comma(input, pos - 1, pos);
    }
    return pos;
};
 
/** @type {CharHandler} */
const _consumeAnIdentSequence = (input, pos) => {
    // This section describes how to consume an ident sequence from a stream of code points.
    // It returns a string containing the largest name that can be formed from adjacent code points in the stream, starting from the first.
 
    // Note: This algorithm does not do the verification of the first few code points that are necessary to ensure the returned code points would constitute an <ident-token>.
    // If that is the intended use, ensure that the stream starts with an ident sequence before calling this algorithm.
 
    // Let result initially be an empty string.
 
    // Repeatedly consume the next input code point from the stream:
    for (;;) {
        const cc = input.charCodeAt(pos);
        pos++;
 
        // ident code point
        // Append the code point to result.
        if (_isIdentCodePoint(cc, pos - 1)) {
            // Nothing
        }
        // the stream starts with a valid escape
        // Consume an escaped code point. Append the returned code point to result.
        else if (_ifTwoCodePointsAreValidEscape(input, pos)) {
            pos = _consumeAnEscapedCodePoint(input, pos);
        }
        // anything else
        // Reconsume the current input code point. Return result.
        else {
            return pos - 1;
        }
    }
};
 
/**
 * @param {number} cc char code
 * @returns {boolean} true, when cc is the non-printable code point, otherwise false
 */
const _isNonPrintableCodePoint = cc =>
    (cc >= 0x00 && cc <= 0x08) ||
    cc === 0x0b ||
    (cc >= 0x0e && cc <= 0x1f) ||
    cc === 0x7f;
 
/**
 * @param {string} input input
 * @param {number} pos position
 * @returns {number} position
 */
const consumeTheRemnantsOfABadUrl = (input, pos) => {
    // This section describes how to consume the remnants of a bad url from a stream of code points,
    // "cleaning up" after the tokenizer realizes that it’s in the middle of a <bad-url-token> rather than a <url-token>.
    // It returns nothing; its sole use is to consume enough of the input stream to reach a recovery point where normal tokenizing can resume.
 
    // Repeatedly consume the next input code point from the stream:
    for (;;) {
        // EOF
        // Return.
        if (pos === input.length) {
            return pos;
        }
 
        const cc = input.charCodeAt(pos);
        pos++;
 
        // U+0029 RIGHT PARENTHESIS ())
        // Return.
        if (cc === CC_RIGHT_PARENTHESIS) {
            return pos;
        }
        // the input stream starts with a valid escape
        // Consume an escaped code point.
        // This allows an escaped right parenthesis ("\)") to be encountered without ending the <bad-url-token>.
        // This is otherwise identical to the "anything else" clause.
        else if (_ifTwoCodePointsAreValidEscape(input, pos)) {
            pos = _consumeAnEscapedCodePoint(input, pos);
        }
        // anything else
        // Do nothing.
        else {
            // Do nothing.
        }
    }
};
 
/**
 * @param {string} input input
 * @param {number} pos position
 * @param {number} fnStart start
 * @param {CssTokenCallbacks} callbacks callbacks
 * @returns {pos} pos
 */
const consumeAUrlToken = (input, pos, fnStart, callbacks) => {
    // This section describes how to consume a url token from a stream of code points.
    // It returns either a <url-token> or a <bad-url-token>.
 
    // Note: This algorithm assumes that the initial "url(" has already been consumed.
    // This algorithm also assumes that it’s being called to consume an "unquoted" value, like url(foo).
    // A quoted value, like url("foo"), is parsed as a <function-token>.
    // Consume an ident-like token automatically handles this distinction; this algorithm shouldn’t be called directly otherwise.
 
    // Initially create a <url-token> with its value set to the empty string.
 
    // Consume as much whitespace as possible.
    while (_isWhiteSpace(input.charCodeAt(pos))) {
        pos++;
    }
 
    const contentStart = pos;
 
    // Repeatedly consume the next input code point from the stream:
    for (;;) {
        // EOF
        // This is a parse error. Return the <url-token>.
        if (pos === input.length) {
            if (callbacks.url !== undefined) {
                return callbacks.url(input, fnStart, pos, contentStart, pos - 1);
            }
 
            return pos;
        }
 
        const cc = input.charCodeAt(pos);
        pos++;
 
        // U+0029 RIGHT PARENTHESIS ())
        // Return the <url-token>.
        if (cc === CC_RIGHT_PARENTHESIS) {
            if (callbacks.url !== undefined) {
                return callbacks.url(input, fnStart, pos, contentStart, pos - 1);
            }
 
            return pos;
        }
        // whitespace
        // Consume as much whitespace as possible.
        // If the next input code point is U+0029 RIGHT PARENTHESIS ()) or EOF, consume it and return the <url-token>
        // (if EOF was encountered, this is a parse error); otherwise, consume the remnants of a bad url, create a <bad-url-token>, and return it.
        else if (_isWhiteSpace(cc)) {
            const end = pos - 1;
 
            while (_isWhiteSpace(input.charCodeAt(pos))) {
                pos++;
            }
 
            if (pos === input.length) {
                if (callbacks.url !== undefined) {
                    return callbacks.url(input, fnStart, pos, contentStart, end);
                }
 
                return pos;
            }
 
            if (input.charCodeAt(pos) === CC_RIGHT_PARENTHESIS) {
                pos++;
 
                if (callbacks.url !== undefined) {
                    return callbacks.url(input, fnStart, pos, contentStart, end);
                }
 
                return pos;
            }
 
            // Don't handle bad urls
            return consumeTheRemnantsOfABadUrl(input, pos);
        }
        // U+0022 QUOTATION MARK (")
        // U+0027 APOSTROPHE (')
        // U+0028 LEFT PARENTHESIS (()
        // non-printable code point
        // This is a parse error. Consume the remnants of a bad url, create a <bad-url-token>, and return it.
        else if (
            cc === CC_QUOTATION_MARK ||
            cc === CC_APOSTROPHE ||
            cc === CC_LEFT_PARENTHESIS ||
            _isNonPrintableCodePoint(cc)
        ) {
            // Don't handle bad urls
            return consumeTheRemnantsOfABadUrl(input, pos);
        }
        // // U+005C REVERSE SOLIDUS (\)
        // // If the stream starts with a valid escape, consume an escaped code point and append the returned code point to the <url-token>’s value.
        // // Otherwise, this is a parse error. Consume the remnants of a bad url, create a <bad-url-token>, and return it.
        else if (cc === CC_REVERSE_SOLIDUS) {
            if (_ifTwoCodePointsAreValidEscape(input, pos)) {
                pos = _consumeAnEscapedCodePoint(input, pos);
            } else {
                // Don't handle bad urls
                return consumeTheRemnantsOfABadUrl(input, pos);
            }
        }
        // anything else
        // Append the current input code point to the <url-token>’s value.
        else {
            // Nothing
        }
    }
};
 
/** @type {CharHandler} */
const consumeAnIdentLikeToken = (input, pos, callbacks) => {
    const start = pos;
    // This section describes how to consume an ident-like token from a stream of code points.
    // It returns an <ident-token>, <function-token>, <url-token>, or <bad-url-token>.
    pos = _consumeAnIdentSequence(input, pos, callbacks);
 
    // If string’s value is an ASCII case-insensitive match for "url", and the next input code point is U+0028 LEFT PARENTHESIS ((), consume it.
    // While the next two input code points are whitespace, consume the next input code point.
    // If the next one or two input code points are U+0022 QUOTATION MARK ("), U+0027 APOSTROPHE ('), or whitespace followed by U+0022 QUOTATION MARK (") or U+0027 APOSTROPHE ('), then create a <function-token> with its value set to string and return it.
    // Otherwise, consume a url token, and return it.
    if (
        input.slice(start, pos).toLowerCase() === "url" &&
        input.charCodeAt(pos) === CC_LEFT_PARENTHESIS
    ) {
        pos++;
        const end = pos;
 
        while (
            _isWhiteSpace(input.charCodeAt(pos)) &&
            _isWhiteSpace(input.charCodeAt(pos + 1))
        ) {
            pos++;
        }
 
        if (
            input.charCodeAt(pos) === CC_QUOTATION_MARK ||
            input.charCodeAt(pos) === CC_APOSTROPHE ||
            (_isWhiteSpace(input.charCodeAt(pos)) &&
                (input.charCodeAt(pos + 1) === CC_QUOTATION_MARK ||
                    input.charCodeAt(pos + 1) === CC_APOSTROPHE))
        ) {
            if (callbacks.function !== undefined) {
                return callbacks.function(input, start, end);
            }
 
            return pos;
        }
 
        return consumeAUrlToken(input, pos, start, callbacks);
    }
 
    // Otherwise, if the next input code point is U+0028 LEFT PARENTHESIS ((), consume it.
    // Create a <function-token> with its value set to string and return it.
    if (input.charCodeAt(pos) === CC_LEFT_PARENTHESIS) {
        pos++;
 
        if (callbacks.function !== undefined) {
            return callbacks.function(input, start, pos);
        }
 
        return pos;
    }
 
    // Otherwise, create an <ident-token> with its value set to string and return it.
    if (callbacks.identifier !== undefined) {
        return callbacks.identifier(input, start, pos);
    }
 
    return pos;
};
 
/** @type {CharHandler} */
const consumeLessThan = (input, pos, _callbacks) => {
    // If the next 3 input code points are U+0021 EXCLAMATION MARK U+002D HYPHEN-MINUS U+002D HYPHEN-MINUS (!--), consume them and return a <CDO-token>.
    if (input.slice(pos, pos + 3) === "!--") {
        return pos + 3;
    }
 
    // Otherwise, return a <delim-token> with its value set to the current input code point.
    return pos;
};
 
/** @type {CharHandler} */
const consumeCommercialAt = (input, pos, callbacks) => {
    const start = pos - 1;
 
    // If the next 3 input code points would start an ident sequence, consume an ident sequence, create an <at-keyword-token> with its value set to the returned value, and return it.
    if (
        _ifThreeCodePointsWouldStartAnIdentSequence(
            input,
            pos,
            input.charCodeAt(pos),
            input.charCodeAt(pos + 1),
            input.charCodeAt(pos + 2)
        )
    ) {
        pos = _consumeAnIdentSequence(input, pos, callbacks);
 
        if (callbacks.atKeyword !== undefined) {
            pos = callbacks.atKeyword(input, start, pos);
        }
 
        return pos;
    }
 
    // Otherwise, return a <delim-token> with its value set to the current input code point.
    return pos;
};
 
/** @type {CharHandler} */
const consumeReverseSolidus = (input, pos, callbacks) => {
    // If the input stream starts with a valid escape, reconsume the current input code point, consume an ident-like token, and return it.
    if (_ifTwoCodePointsAreValidEscape(input, pos)) {
        pos--;
        return consumeAnIdentLikeToken(input, pos, callbacks);
    }
 
    // Otherwise, this is a parse error. Return a <delim-token> with its value set to the current input code point.
    return pos;
};
 
/** @type {CharHandler} */
const consumeAToken = (input, pos, callbacks) => {
    const cc = input.charCodeAt(pos - 1);
 
    // https://drafts.csswg.org/css-syntax/#consume-token
    switch (cc) {
        // whitespace
        case CC_LINE_FEED:
        case CC_CARRIAGE_RETURN:
        case CC_FORM_FEED:
        case CC_TAB:
        case CC_SPACE:
            return consumeSpace(input, pos, callbacks);
        // U+0022 QUOTATION MARK (")
        case CC_QUOTATION_MARK:
            return consumeAStringToken(input, pos, callbacks);
        // U+0023 NUMBER SIGN (#)
        case CC_NUMBER_SIGN:
            return consumeNumberSign(input, pos, callbacks);
        // U+0027 APOSTROPHE (')
        case CC_APOSTROPHE:
            return consumeAStringToken(input, pos, callbacks);
        // U+0028 LEFT PARENTHESIS (()
        case CC_LEFT_PARENTHESIS:
            return consumeLeftParenthesis(input, pos, callbacks);
        // U+0029 RIGHT PARENTHESIS ())
        case CC_RIGHT_PARENTHESIS:
            return consumeRightParenthesis(input, pos, callbacks);
        // U+002B PLUS SIGN (+)
        case CC_PLUS_SIGN:
            return consumePlusSign(input, pos, callbacks);
        // U+002C COMMA (,)
        case CC_COMMA:
            return consumeComma(input, pos, callbacks);
        // U+002D HYPHEN-MINUS (-)
        case CC_HYPHEN_MINUS:
            return consumeHyphenMinus(input, pos, callbacks);
        // U+002E FULL STOP (.)
        case CC_FULL_STOP:
            return consumeFullStop(input, pos, callbacks);
        // U+003A COLON (:)
        case CC_COLON:
            return consumeColon(input, pos, callbacks);
        // U+003B SEMICOLON (;)
        case CC_SEMICOLON:
            return consumeSemicolon(input, pos, callbacks);
        // U+003C LESS-THAN SIGN (<)
        case CC_LESS_THAN_SIGN:
            return consumeLessThan(input, pos, callbacks);
        // U+0040 COMMERCIAL AT (@)
        case CC_AT_SIGN:
            return consumeCommercialAt(input, pos, callbacks);
        // U+005B LEFT SQUARE BRACKET ([)
        case CC_LEFT_SQUARE:
            return consumeLeftSquareBracket(input, pos, callbacks);
        // U+005C REVERSE SOLIDUS (\)
        case CC_REVERSE_SOLIDUS:
            return consumeReverseSolidus(input, pos, callbacks);
        // U+005D RIGHT SQUARE BRACKET (])
        case CC_RIGHT_SQUARE:
            return consumeRightSquareBracket(input, pos, callbacks);
        // U+007B LEFT CURLY BRACKET ({)
        case CC_LEFT_CURLY:
            return consumeLeftCurlyBracket(input, pos, callbacks);
        // U+007D RIGHT CURLY BRACKET (})
        case CC_RIGHT_CURLY:
            return consumeRightCurlyBracket(input, pos, callbacks);
        default:
            // digit
            // Reconsume the current input code point, consume a numeric token, and return it.
            if (_isDigit(cc)) {
                pos--;
                return consumeANumericToken(input, pos, callbacks);
            } else if (cc === CC_LOWER_U || cc === CC_UPPER_U) {
                // If unicode ranges allowed is true and the input stream would start a unicode-range,
                // reconsume the current input code point, consume a unicode-range token, and return it.
                // Skip now
                // if (_ifThreeCodePointsWouldStartAUnicodeRange(input, pos)) {
                //     pos--;
                //     return consumeAUnicodeRangeToken(input, pos, callbacks);
                // }
 
                // Otherwise, reconsume the current input code point, consume an ident-like token, and return it.
                pos--;
                return consumeAnIdentLikeToken(input, pos, callbacks);
            }
            // ident-start code point
            // Reconsume the current input code point, consume an ident-like token, and return it.
            else if (isIdentStartCodePoint(cc)) {
                pos--;
                return consumeAnIdentLikeToken(input, pos, callbacks);
            }
 
            // EOF, but we don't have it
 
            // anything else
            // Return a <delim-token> with its value set to the current input code point.
            return consumeDelimToken(input, pos, callbacks);
    }
};
 
/**
 * @param {string} input input css
 * @param {number=} pos pos
 * @param {CssTokenCallbacks=} callbacks callbacks
 * @returns {number} pos
 */
module.exports = (input, pos = 0, callbacks = {}) => {
    // This section describes how to consume a token from a stream of code points. It will return a single token of any type.
    while (pos < input.length) {
        // Consume comments.
        pos = consumeComments(input, pos, callbacks);
 
        // Consume the next input code point.
        pos++;
        pos = consumeAToken(input, pos, callbacks);
 
        if (callbacks.needTerminate && callbacks.needTerminate()) {
            break;
        }
    }
 
    return pos;
};
 
module.exports.isIdentStartCodePoint = isIdentStartCodePoint;
 
/**
 * @param {string} input input
 * @param {number} pos position
 * @returns {number} position after comments
 */
module.exports.eatComments = (input, pos) => {
    for (;;) {
        const originalPos = pos;
        pos = consumeComments(input, pos, {});
        if (originalPos === pos) {
            break;
        }
    }
 
    return pos;
};
 
/**
 * @param {string} input input
 * @param {number} pos position
 * @returns {number} position after whitespace
 */
module.exports.eatWhitespace = (input, pos) => {
    while (_isWhiteSpace(input.charCodeAt(pos))) {
        pos++;
    }
 
    return pos;
};
 
/**
 * @param {string} input input
 * @param {number} pos position
 * @returns {number} position after whitespace and comments
 */
module.exports.eatWhitespaceAndComments = (input, pos) => {
    for (;;) {
        const originalPos = pos;
        pos = consumeComments(input, pos, {});
        while (_isWhiteSpace(input.charCodeAt(pos))) {
            pos++;
        }
        if (originalPos === pos) {
            break;
        }
    }
 
    return pos;
};
 
/**
 * @param {string} input input
 * @param {number} pos position
 * @returns {number} position after whitespace and comments
 */
module.exports.eatComments = (input, pos) => {
    for (;;) {
        const originalPos = pos;
        pos = consumeComments(input, pos, {});
        if (originalPos === pos) {
            break;
        }
    }
 
    return pos;
};
 
/**
 * @param {string} input input
 * @param {number} pos position
 * @returns {number} position after whitespace
 */
module.exports.eatWhiteLine = (input, pos) => {
    for (;;) {
        const cc = input.charCodeAt(pos);
        if (_isSpace(cc)) {
            pos++;
            continue;
        }
        if (_isNewline(cc)) pos++;
        pos = consumeExtraNewline(cc, input, pos);
        break;
    }
 
    return pos;
};
 
/**
 * @param {string} input input
 * @param {number} pos position
 * @returns {[number, number] | undefined} positions of ident sequence
 */
module.exports.skipCommentsAndEatIdentSequence = (input, pos) => {
    pos = module.exports.eatComments(input, pos);
 
    const start = pos;
 
    if (
        _ifThreeCodePointsWouldStartAnIdentSequence(
            input,
            pos,
            input.charCodeAt(pos),
            input.charCodeAt(pos + 1),
            input.charCodeAt(pos + 2)
        )
    ) {
        return [start, _consumeAnIdentSequence(input, pos, {})];
    }
 
    return undefined;
};
 
/**
 * @param {string} input input
 * @param {number} pos position
 * @returns {[number, number] | undefined} positions of ident sequence
 */
module.exports.eatString = (input, pos) => {
    pos = module.exports.eatWhitespaceAndComments(input, pos);
 
    const start = pos;
 
    if (
        input.charCodeAt(pos) === CC_QUOTATION_MARK ||
        input.charCodeAt(pos) === CC_APOSTROPHE
    ) {
        return [start, consumeAStringToken(input, pos + 1, {})];
    }
 
    return undefined;
};
 
/**
 * @param {string} input input
 * @param {number} pos position
 * @param {CssTokenCallbacks} cbs callbacks
 * @returns {[number, number][]} positions of ident sequence
 */
module.exports.eatImageSetStrings = (input, pos, cbs) => {
    /** @type {[number, number][]} */
    const result = [];
 
    let isFirst = true;
    let needStop = false;
    // We already in `func(` token
    let balanced = 1;
 
    /** @type {CssTokenCallbacks} */
    const callbacks = {
        ...cbs,
        string: (_input, start, end) => {
            if (isFirst && balanced === 1) {
                result.push([start, end]);
                isFirst = false;
            }
 
            return end;
        },
        comma: (_input, _start, end) => {
            if (balanced === 1) {
                isFirst = true;
            }
 
            return end;
        },
        leftParenthesis: (input, start, end) => {
            balanced++;
 
            return end;
        },
        function: (_input, start, end) => {
            balanced++;
 
            return end;
        },
        rightParenthesis: (_input, _start, end) => {
            balanced--;
 
            if (balanced === 0) {
                needStop = true;
            }
 
            return end;
        }
    };
 
    while (pos < input.length) {
        // Consume comments.
        pos = consumeComments(input, pos, callbacks);
 
        // Consume the next input code point.
        pos++;
        pos = consumeAToken(input, pos, callbacks);
 
        if (needStop) {
            break;
        }
    }
 
    return result;
};
 
/**
 * @param {string} input input
 * @param {number} pos position
 * @param {CssTokenCallbacks} cbs callbacks
 * @returns {[[number, number, number, number] | undefined, [number, number] | undefined, [number, number] | undefined, [number, number] | undefined]} positions of top level tokens
 */
module.exports.eatImportTokens = (input, pos, cbs) => {
    const result =
        /** @type {[[number, number, number, number] | undefined, [number, number] | undefined, [number, number] | undefined, [number, number] | undefined]} */
        (new Array(4));
 
    /** @type {0 | 1 | 2 | undefined} */
    let scope;
    let needStop = false;
    let balanced = 0;
 
    /** @type {CssTokenCallbacks} */
    const callbacks = {
        ...cbs,
        url: (_input, start, end, contentStart, contentEnd) => {
            if (
                result[0] === undefined &&
                balanced === 0 &&
                result[1] === undefined &&
                result[2] === undefined &&
                result[3] === undefined
            ) {
                result[0] = [start, end, contentStart, contentEnd];
                scope = undefined;
            }
 
            return end;
        },
        string: (_input, start, end) => {
            if (
                balanced === 0 &&
                result[0] === undefined &&
                result[1] === undefined &&
                result[2] === undefined &&
                result[3] === undefined
            ) {
                result[0] = [start, end, start + 1, end - 1];
                scope = undefined;
            } else if (result[0] !== undefined && scope === 0) {
                result[0][2] = start + 1;
                result[0][3] = end - 1;
            }
 
            return end;
        },
        leftParenthesis: (_input, _start, end) => {
            balanced++;
 
            return end;
        },
        rightParenthesis: (_input, _start, end) => {
            balanced--;
 
            if (balanced === 0 && scope !== undefined) {
                /** @type {[number, number]} */
                (result[scope])[1] = end;
                scope = undefined;
            }
 
            return end;
        },
        function: (input, start, end) => {
            if (balanced === 0) {
                const name = input
                    .slice(start, end - 1)
                    .replace(/\\/g, "")
                    .toLowerCase();
 
                if (
                    name === "url" &&
                    result[0] === undefined &&
                    result[1] === undefined &&
                    result[2] === undefined &&
                    result[3] === undefined
                ) {
                    scope = 0;
                    result[scope] = [start, end + 1, end + 1, end + 1];
                } else if (
                    name === "layer" &&
                    result[1] === undefined &&
                    result[2] === undefined
                ) {
                    scope = 1;
                    result[scope] = [start, end];
                } else if (name === "supports" && result[2] === undefined) {
                    scope = 2;
                    result[scope] = [start, end];
                } else {
                    scope = undefined;
                }
            }
 
            balanced++;
 
            return end;
        },
        identifier: (input, start, end) => {
            if (
                balanced === 0 &&
                result[1] === undefined &&
                result[2] === undefined
            ) {
                const name = input.slice(start, end).replace(/\\/g, "").toLowerCase();
 
                if (name === "layer") {
                    result[1] = [start, end];
                    scope = undefined;
                }
            }
 
            return end;
        },
        semicolon: (_input, start, end) => {
            if (balanced === 0) {
                needStop = true;
                result[3] = [start, end];
            }
 
            return end;
        }
    };
 
    while (pos < input.length) {
        // Consume comments.
        pos = consumeComments(input, pos, callbacks);
 
        // Consume the next input code point.
        pos++;
        pos = consumeAToken(input, pos, callbacks);
 
        if (needStop) {
            break;
        }
    }
 
    return result;
};
 
/**
 * @param {string} input input
 * @param {number} pos position
 * @returns {[number, number] | undefined} positions of ident sequence
 */
module.exports.eatIdentSequence = (input, pos) => {
    pos = module.exports.eatWhitespaceAndComments(input, pos);
 
    const start = pos;
 
    if (
        _ifThreeCodePointsWouldStartAnIdentSequence(
            input,
            pos,
            input.charCodeAt(pos),
            input.charCodeAt(pos + 1),
            input.charCodeAt(pos + 2)
        )
    ) {
        return [start, _consumeAnIdentSequence(input, pos, {})];
    }
 
    return undefined;
};
 
/**
 * @param {string} input input
 * @param {number} pos position
 * @returns {[number, number, boolean] | undefined} positions of ident sequence or string
 */
module.exports.eatIdentSequenceOrString = (input, pos) => {
    pos = module.exports.eatWhitespaceAndComments(input, pos);
 
    const start = pos;
 
    if (
        input.charCodeAt(pos) === CC_QUOTATION_MARK ||
        input.charCodeAt(pos) === CC_APOSTROPHE
    ) {
        return [start, consumeAStringToken(input, pos + 1, {}), false];
    } else if (
        _ifThreeCodePointsWouldStartAnIdentSequence(
            input,
            pos,
            input.charCodeAt(pos),
            input.charCodeAt(pos + 1),
            input.charCodeAt(pos + 2)
        )
    ) {
        return [start, _consumeAnIdentSequence(input, pos, {}), true];
    }
 
    return undefined;
};
 
/**
 * @param {string} chars characters
 * @returns {(input: string, pos: number) => number} function to eat characters
 */
module.exports.eatUntil = chars => {
    const charCodes = Array.from({ length: chars.length }, (_, i) =>
        chars.charCodeAt(i)
    );
    const arr = Array.from(
        { length: charCodes.reduce((a, b) => Math.max(a, b), 0) + 1 },
        () => false
    );
    for (const cc of charCodes) {
        arr[cc] = true;
    }
 
    return (input, pos) => {
        for (;;) {
            const cc = input.charCodeAt(pos);
            if (cc < arr.length && arr[cc]) {
                return pos;
            }
            pos++;
            if (pos === input.length) return pos;
        }
    };
};