esr 0.1.0

ECMAScript-style language transpiler in Rust
Documentation
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
mod token;
mod labels;
mod util;

pub use crate::lexer::token::*;

use crate::lexer::labels::*;
use crate::lexer::token::Token::*;

use std::str;
use crate::error::Error;
use toolshed::Arena;

macro_rules! expect_byte {
    ($lex:ident) => ({
        match $lex.read_byte() {
            0 => return $lex.token = UnexpectedEndOfProgram,
            _ => $lex.bump()
        }
    });
}

macro_rules! unwind_loop {
    ($iteration:expr) => ({
        $iteration
        $iteration
        $iteration
        $iteration
        $iteration

        loop {
            $iteration
            $iteration
            $iteration
            $iteration
            $iteration
        }
    })
}

/// Contextual check describing which Automatic Semicolon Insertion rules can be applied.
#[derive(Clone, Copy, PartialEq)]
pub enum Asi {
    /// Current token is a semicolon. Parser should consume it and finalize the statement.
    ExplicitSemicolon,

    /// Current token is not a semicolon, but previous token is either followed by a
    /// line termination, or allows semicolon insertion itself. Parser should finalize the
    /// statement without consuming the current token.
    ImplicitSemicolon,

    /// Current token is not a semicolon, and no semicolon insertion rules were triggered.
    /// Parser should continue parsing the statement or error.
    NoSemicolon,
}

type ByteHandler = Option<for<'arena> fn(&mut Lexer<'arena>)>;

/// Lookup table mapping any incoming byte to a handler function defined below.
static BYTE_HANDLERS: [ByteHandler; 256] = [
//   0    1    2    3    4    5    6    7    8    9    A    B    C    D    E    F   //
    EOF, ___, ___, ___, ___, ___, ___, ___, ___, ___, ___, ___, ___, ___, ___, ___, // 0
    ___, ___, ___, ___, ___, ___, ___, ___, ___, ___, ___, ___, ___, ___, ___, ___, // 1
    ___, EXL, QOT, ERR, IDT, PRC, AMP, QOT, PNO, PNC, ATR, PLS, COM, MIN, PRD, SLH, // 2
    ZER, DIG, DIG, DIG, DIG, DIG, DIG, DIG, DIG, DIG, COL, SEM, LSS, EQL, MOR, QST, // 3
    ERR, IDT, IDT, IDT, IDT, IDT, IDT, IDT, IDT, IDT, IDT, IDT, IDT, IDT, IDT, IDT, // 4
    IDT, IDT, IDT, IDT, IDT, IDT, IDT, IDT, IDT, IDT, IDT, BTO, IDT, BTC, CRT, IDT, // 5
    TPL, IDT, L_B, L_C, L_D, L_E, L_F, IDT, IDT, L_I, IDT, IDT, L_L, IDT, L_N, IDT, // 6
    L_P, IDT, L_R, L_S, L_T, L_U, L_V, L_W, IDT, L_Y, IDT, BEO, PIP, BEC, TLD, ERR, // 7
    UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, // 8
    UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, // 9
    UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, // A
    UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, // B
    UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, // C
    UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, // D
    UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, // E
    UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, UNI, // F
];

const ___: ByteHandler = None;

const ERR: ByteHandler = Some(|lex| {
    lex.bump();

    lex.token = UnexpectedToken;
});

const EOF: ByteHandler = Some(|lex| {
    lex.asi = Asi::ImplicitSemicolon;

    lex.token = EndOfProgram;
});

// ;
const SEM: ByteHandler = Some(|lex| {
    lex.bump();

    lex.asi = Asi::ExplicitSemicolon;

    lex.token = Semicolon;
});

// :
const COL: ByteHandler = Some(|lex| {
    lex.bump();

    lex.token = Colon;
});

// ,
const COM: ByteHandler = Some(|lex| {
    lex.bump();

    lex.token = Comma;
});

// (
const PNO: ByteHandler = Some(|lex| {
    lex.bump();

    lex.token = ParenOpen;
});

// )
const PNC: ByteHandler = Some(|lex| {
    lex.bump();

    lex.asi = Asi::ImplicitSemicolon;

    lex.token = ParenClose;
});

// [
const BTO: ByteHandler = Some(|lex| {
    lex.bump();

    lex.token = BracketOpen;
});

// ]
const BTC: ByteHandler = Some(|lex| {
    lex.bump();

    lex.token = BracketClose;
});

// {
const BEO: ByteHandler = Some(|lex| {
    lex.bump();

    lex.token = BraceOpen;
});

// }
const BEC: ByteHandler = Some(|lex| {
    lex.bump();

    lex.asi = Asi::ImplicitSemicolon;

    lex.token = BraceClose;
});

// =
const EQL: ByteHandler = Some(|lex| {
    lex.token = match lex.next_byte() {
        b'=' => {
            match lex.next_byte() {
                b'=' => {
                    lex.bump();

                    OperatorStrictEquality
                },

                _ => OperatorEquality
            }
        },

        b'>' => {
            lex.bump();

            OperatorFatArrow
        },

        _ => OperatorAssign
    };
});

// !
const EXL: ByteHandler = Some(|lex| {
    lex.token = match lex.next_byte() {
        b'=' => {
            match lex.next_byte() {
                b'=' => {
                    lex.bump();

                    OperatorStrictInequality
                },

                _ => OperatorInequality
            }
        },

        _ => OperatorLogicalNot
    };
});

// <
const LSS: ByteHandler = Some(|lex| {
    lex.token = match lex.next_byte() {
        b'<' => {
            match lex.next_byte() {
                b'=' => {
                    lex.bump();

                    OperatorBSLAssign
                },

                _ => OperatorBitShiftLeft
            }
        },

        b'=' => {
            lex.bump();

            OperatorLesserEquals
        },

        _ => OperatorLesser
    };
});

// >
const MOR: ByteHandler = Some(|lex| {
    lex.token = match lex.next_byte() {
        b'>' => {
            match lex.next_byte() {
                b'>' => {
                    match lex.next_byte() {
                        b'=' => {
                            lex.bump();

                            OperatorUBSRAssign
                        }

                        _ => OperatorUBitShiftRight
                    }
                },

                b'=' => {
                    lex.bump();

                    OperatorBSRAssign
                },

                _ => OperatorBitShiftRight
            }
        },

        b'=' => {
            lex.bump();

            OperatorGreaterEquals
        },

        _ => OperatorGreater
    };
});

// ?
const QST: ByteHandler = Some(|lex| {
    lex.bump();

    lex.token = OperatorConditional;
});

// ~
const TLD: ByteHandler = Some(|lex| {
    lex.bump();

    lex.token = OperatorBitwiseNot;
});

// ^
const CRT: ByteHandler = Some(|lex| {
    lex.token = match lex.next_byte() {
        b'=' => {
            lex.bump();

            OperatorBitXorAssign
        },

        _ => OperatorBitwiseXor
    };
});

// &
const AMP: ByteHandler = Some(|lex| {
    lex.token = match lex.next_byte() {
        b'&' => {
            lex.bump();

            OperatorLogicalAnd
        },

        b'=' => {
            lex.bump();

            OperatorBitAndAssign
        },

        _ => OperatorBitwiseAnd
    };
});

// |
const PIP: ByteHandler = Some(|lex| {
    lex.token = match lex.next_byte() {
        b'|' => {
            lex.bump();

            OperatorLogicalOr
        },

        b'=' => {
            lex.bump();

            OperatorBitOrAssign
        },

        _ => OperatorBitwiseOr
    };
});

// +
const PLS: ByteHandler = Some(|lex| {
    lex.token = match lex.next_byte() {
        b'+' => {
            lex.bump();

            OperatorIncrement
        },

        b'=' => {
            lex.bump();

            OperatorAddAssign
        },

        _ => OperatorAddition
    };
});

// -
const MIN: ByteHandler = Some(|lex| {
    lex.token = match lex.next_byte() {
        b'-' => {
            lex.bump();

            OperatorDecrement
        },

        b'=' => {
            lex.bump();

            OperatorSubtractAssign
        },

        _ => OperatorSubtraction
    };
});

// *
const ATR: ByteHandler = Some(|lex| {
    lex.token = match lex.next_byte() {
        b'*' => {
            match lex.next_byte() {
                b'=' => {
                    lex.bump();

                    OperatorExponentAssign
                },

                _ => OperatorExponent
            }
        },

        b'=' => {
            lex.bump();

            OperatorMultiplyAssign
        },

        _ => OperatorMultiplication
    };
});

// /
const SLH: ByteHandler = Some(|lex| {
    lex.token = match lex.next_byte() {
        // regular comment
        b'/' => {
            // Keep consuming bytes until new line or end of source
            unwind_loop!({
                match lex.next_byte() {
                    0 | b'\n' => {
                        return lex.consume();
                    }
                    _ => {}
                }
            });
        },

        // block comment
        b'*' => {
            lex.bump();
            // Keep consuming bytes until */ happens in a row
            unwind_loop!({
                match lex.read_byte() {
                    b'*' => {
                        match lex.next_byte() {
                            b'/' => {
                                lex.bump();
                                return lex.consume();
                            },
                            0 => return lex.token = UnexpectedEndOfProgram,
                            _ => {}
                        }
                    },
                    0 => return lex.token = UnexpectedEndOfProgram,
                    _ => lex.bump()
                }
            });
        },

        b'=' => {
            lex.bump();

            OperatorDivideAssign
        }

        _ => OperatorDivision
    };
});

// %
const PRC: ByteHandler = Some(|lex| {
    lex.token = match lex.next_byte() {
        b'=' => {
            lex.bump();

            OperatorRemainderAssign
        },

        _ => OperatorRemainder
    };
});

// Unicode character
const UNI: ByteHandler = Some(|lex| {
    let start = lex.index;

    // TODO: unicodes with different lengths
    let first = lex.slice_source(start, start + 4).chars().next().expect("Has to have one");

    if !first.is_alphanumeric() {
        return lex.token = UnexpectedToken;
    }

    // `read_label` bumps one at the beginning,
    // so we subtract it here.
    lex.index += first.len_utf8() - 1;

    lex.read_label();

    lex.token = Identifier;
});

// 0
const ZER: ByteHandler = Some(|lex| {
    match lex.next_byte() {
        b'b' | b'B' => {
            lex.bump();

            return lex.read_binary();
        },

        b'o' | b'O' => {
            lex.bump();

            return lex.read_octal();
        },

        b'x' | b'X' => {
            lex.bump();

            return lex.read_hexadec();
        },

        _ => {}
    }

    loop {
        match lex.read_byte() {
            b'0'..=b'9' => {
                lex.bump();
            },
            b'.' => {
                lex.bump();

                return lex.read_float();
            },
            b'e' | b'E' => {
                lex.bump();

                return lex.read_scientific();
            }
            _ => break,
        }
    }

    lex.token = LiteralNumber;
});

// 1 to 9
const DIG: ByteHandler = Some(|lex| {
    unwind_loop!({
        match lex.next_byte() {
            b'0'..=b'9' => {},
            b'.' => {
                lex.bump();

                return lex.read_float();
            },
            b'e' | b'E' => {
                lex.bump();

                return lex.read_scientific();
            },
            _ => {
                return lex.token = LiteralNumber;
            },
        }
    });
});

// .
const PRD: ByteHandler = Some(|lex| {
    match lex.next_byte() {
        b'0'..=b'9' => {
            lex.bump();

            lex.read_float()
        },

        b'.' => {
            lex.token = match lex.next_byte() {
                b'.' => {
                    lex.bump();

                    OperatorSpread
                },

                _ => UnexpectedToken
            }
        },

        _ => lex.read_accessor()
    };
});

// " or '
const QOT: ByteHandler = Some(|lex| {
    let style = lex.read_byte();

    lex.bump();

    unwind_loop!({
        match lex.read_byte() {
            ch if ch == style => {
                lex.bump();
                return lex.token = LiteralString;
            },
            b'\\' => {
                lex.bump();
                expect_byte!(lex);
            },
            0 => {
                return lex.token = UnexpectedEndOfProgram;
            },
            _ => lex.bump()
        }
    });
});

// `
const TPL: ByteHandler = Some(|lex| {
    lex.bump();
    lex.read_template_kind();
});

pub struct Lexer<'arena> {
    /// Current `Token` from the source.
    pub token: Token,

    /// Flags whether or not a new line was read before the token
    asi: Asi,

    /// Source to parse, must be a C-style buffer ending with 0 byte
    ptr: *const u8,

    /// Current index
    index: usize,

    /// Position of current token in source
    token_start: usize,

    accessor_start: usize,

    pub quasi: &'arena str,
}


impl<'arena> Lexer<'arena> {
    /// Create a new `Lexer` from source using an existing arena.
    #[inline]
    pub fn new(arena: &'arena Arena, source: &str) -> Self {
        unsafe { Lexer::from_ptr(arena.alloc_str_with_nul(source)) }
    }

    /// Create a new `Lexer` from a raw pointer to byte string.
    ///
    /// **The source must be null terminated!**
    /// Passing a pointer that is not null terminated is undefined behavior!
    ///
    /// **The source must be valid UTF8!**
    /// Passing a pointer to data that is not valid UTF8 will lead
    /// to bugs or undefined behavior.
    #[inline]
    pub unsafe fn from_ptr(ptr: *const u8) -> Self {
        let mut lexer = Lexer {
            token: UnexpectedToken,
            asi: Asi::NoSemicolon,
            ptr,
            index: 0,
            token_start: 0,
            accessor_start: 0,
            quasi: "",
        };

        lexer.consume();

        lexer
    }

    /// Advances the lexer, produces a new `Token` and stores it on `self.token`.
    #[inline]
    pub fn consume(&mut self) {
        self.asi = Asi::NoSemicolon;

        let mut ch;

        unwind_loop!({
            ch = self.read_byte();

            if let Some(handler) = self.handler_from_byte(ch) {
                self.token_start = self.index;
                return handler(self);
            }

            self.bump();

            if ch == b'\n' {
                self.asi = Asi::ImplicitSemicolon;
            }
        })
    }

    /// Create an `&str` slice from source spanning current token.
    #[inline]
    pub fn token_as_str(&self) -> &'arena str {
        let start = self.token_start;
        self.slice_from(start)
    }

    /// Specialized version of `token_as_str` that crates an `&str`
    /// slice for the identifier following an accessor (`.`).
    #[inline]
    pub fn accessor_as_str(&self) -> &'arena str {
        let start = self.accessor_start;
        self.slice_from(start)
    }

    #[inline]
    fn handler_from_byte(&mut self, byte: u8) -> ByteHandler {
        unsafe { *(&BYTE_HANDLERS as *const ByteHandler).offset(byte as isize) }
    }

    /// Get the start and end positions of the current token.
    #[inline]
    pub fn loc(&self) -> (u32, u32) {
        (self.start(), self.end())
    }

    /// Get the start position of the current token.
    #[inline]
    pub fn start(&self) -> u32 {
        self.token_start as u32
    }

    /// Get the end position of the current token.
    #[inline]
    pub fn end(&self) -> u32 {
        self.index as u32
    }

    /// Get the start position of the current token, then advance the lexer.
    #[inline]
    pub fn start_then_consume(&mut self) -> u32 {
        let start = self.start();
        self.consume();
        start
    }

    /// Get the end position of the current token, then advance the lexer.
    #[inline]
    pub fn end_then_consume(&mut self) -> u32 {
        let end = self.end();
        self.consume();
        end
    }

    /// On top of being called when the opening backtick (`) of a template
    /// literal occurs, this method needs to be used by the parser while
    /// parsing a complex template string expression.
    ///
    /// **Note:** Parser needs to expect a BraceClose token before calling
    /// this method to ensure that the tokenizer state is not corrupted.
    #[inline]
    pub fn read_template_kind(&mut self) {
        let start = self.index;

        loop {
            match self.read_byte() {
                b'`' => {
                    let end = self.index;

                    self.bump();
                    self.quasi = self.slice_source(start, end);
                    self.token = TemplateClosed;

                    return;
                },
                b'$' => {
                    let end = self.index;

                    self.bump();

                    match self.read_byte() {
                        b'{' => self.bump(),
                        _    => continue
                    }

                    self.quasi = self.slice_source(start, end);
                    self.token = TemplateOpen;
                    return;
                },
                b'\\' => {
                    self.bump();

                    match self.read_byte() {
                        0 => {
                            self.token = UnexpectedEndOfProgram;
                            return;
                        },
                        _ => self.bump()
                    }
                },
                _ => self.bump()
            }
        }
    }

    /// Get a definition of which ASI rules can be applied.
    #[inline]
    pub fn asi(&self) -> Asi {
        self.asi
    }

    pub fn invalid_token(&mut self) -> Error {
        let start = self.token_start;
        let end = self.index;
        let token = self.token;

        if token != EndOfProgram {
            self.consume();
        }

        Error {
            token,
            start,
            end,
            raw: self.slice_source(start, end).to_owned().into_boxed_str()
        }
    }

    /// Read a byte from the source. Note that this does not increment
    /// the index. In few cases (all of them related to number parsing)
    /// we want to peek at the byte before doing anything. This will,
    /// very very rarely, lead to a situation where the same byte is read
    /// twice, but since this operation is using a raw pointer, the cost
    /// is virtually irrelevant.
    #[inline]
    fn read_byte(&self) -> u8 {
        unsafe { *self.ptr.add(self.index) }
    }

    /// Manually increment the index. Calling `read_byte` and then `bump`
    /// is equivalent to consuming a byte on an iterator.
    #[inline]
    fn bump(&mut self) {
        self.index += 1;
    }

    #[inline]
    fn next_byte(&mut self) -> u8 {
        self.bump();
        self.read_byte()
    }

    #[inline]
    fn read_binary(&mut self) {
        loop {
            match self.read_byte() {
                b'0' => {
                    self.bump();
                },
                b'1' => {
                    self.bump();
                },
                _ => break
            }
        }

        self.token = LiteralBinary;
    }

    /// This is a specialized method that expects the next token to be an identifier,
    /// even if it would otherwise be a keyword.
    ///
    /// This is useful when parsing member expressions such as `foo.function`, where
    /// `function` is actually allowed as a regular identifier, not a keyword.
    ///
    /// The perf gain here comes mainly from avoiding having to first match the `&str`
    /// to a keyword token, and then match that token back to a `&str`.
    #[inline]
    pub fn read_accessor(&mut self) {
        // Look up table that marks which ASCII characters are allowed to start an ident
        const AL: bool = true; // alphabet
        const DO: bool = true; // dollar sign $
        const US: bool = true; // underscore
        const BS: bool = true; // backslash
        const __: bool = false;

        static TABLE: [bool; 128] = [
        // 0   1   2   3   4   5   6   7   8   9   A   B   C   D   E   F
          __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, // 0
          __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, // 1
          __, __, __, __, DO, __, __, __, __, __, __, __, __, __, __, __, // 2
          __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, // 3
          __, AL, AL, AL, AL, AL, AL, AL, AL, AL, AL, AL, AL, AL, AL, AL, // 4
          AL, AL, AL, AL, AL, AL, AL, AL, AL, AL, AL, __, BS, __, __, US, // 5
          __, AL, AL, AL, AL, AL, AL, AL, AL, AL, AL, AL, AL, AL, AL, AL, // 6
          AL, AL, AL, AL, AL, AL, AL, AL, AL, AL, AL, __, __, __, __, __, // 7
        ];

        let mut ch;

        unwind_loop!({
            ch = self.read_byte();

            if ch > 0x20 {
                self.accessor_start = self.index;

                if ch > 127 {
                    unimplemented!();
                    // return unicode(self)
                } else if TABLE[ch as usize] {
                    self.read_label();
                    return self.token = Accessor;
                } else {
                    return self.token = UnexpectedToken;
                }
            }

            self.bump();
        })
    }

    #[inline]
    fn read_label(&mut self) {
        while util::legal_in_label(self.read_byte()) {
            self.bump();
        }
    }

    #[inline]
    fn slice_from(&self, start: usize) -> &'arena str {
        let end = self.index;
        self.slice_source(start, end)
    }

    #[inline]
    fn slice_source(&self, start: usize, end: usize) -> &'arena str {
        use std::str::from_utf8_unchecked;
        use std::slice::from_raw_parts;

        unsafe {
            from_utf8_unchecked(from_raw_parts(
                self.ptr.add(start), end - start
            ))
        }
    }

    #[inline]
    fn read_octal(&mut self) {
        while match self.read_byte() {
            b'0'..=b'7' => true,
            _ => false,
        } {
            self.bump();
        }

        self.token = LiteralNumber;
    }

    #[inline]
    fn read_hexadec(&mut self) {
        while match self.read_byte() {
            b'0'..=b'9' |
            b'a'..=b'f' |
            b'A'..=b'F' => true,
            _ => false,
        } {
            self.bump();
        }

        self.token = LiteralNumber;
    }

    #[inline]
    fn read_float(&mut self) {
        loop {
            match self.read_byte() {
                b'0'..=b'9'  => self.bump(),
                b'e' | b'E'  => {
                    self.bump();
                    return self.read_scientific();
                },
                _            => break
            }
        }

        self.token = LiteralNumber;
    }

    #[inline]
    fn read_scientific(&mut self) {
        match self.read_byte() {
            b'-' | b'+' => self.bump(),
            _           => {}
        }

        while match self.read_byte() {
            b'0'..=b'9' => true,
            _ => false,
        } {
            self.bump();
        }

        self.token = LiteralNumber;
    }

    #[inline]
    pub fn read_regular_expression(&mut self) -> &'arena str {
        let start = self.index - 1;
        let mut in_class = false;
        loop {
            match self.read_byte() {
                b'['  => {
                    self.bump();
                    in_class = true;
                },
                b']'  => {
                    self.bump();
                    in_class = false;
                },
                b'/'  => {
                    self.bump();
                    if !in_class {
                        break;
                    }
                },
                b'\\' => {
                    match self.next_byte() {
                        0 => {
                            self.token = UnexpectedEndOfProgram;
                            return "";
                        },
                        _ => self.bump()
                    }
                },
                b'\n' => {
                    self.bump();
                    self.token = UnexpectedToken;
                    return "";
                },
                _     => self.bump()
            }
        }

        loop {
            match self.read_byte() {
                b'g' | b'i' | b'm' | b'u' | b'y' => {
                    self.bump();
                },
                _                                => {
                    break;
                }
            }
        }

        self.token = LiteralRegEx;
        self.slice_from(start)
    }
}

#[cfg(test)]
mod test {
    use super::*;

    fn assert_lex<T>(source: &str, tokens: T) where T: AsRef<[(Token, &'static str)]> {
        let arena = Arena::new();
        let mut lex = Lexer::new(&arena, source);

        for &(ref token, slice) in tokens.as_ref() {
            assert_eq!(lex.token, *token);
            assert_eq!(lex.token_as_str(), slice);
            lex.consume();
        }

        assert_eq!(lex.token, EndOfProgram);
    }

    #[test]
    fn empty_lexer() {
        assert_lex("   ", []);
    }

    #[test]
    fn line_comment() {
        assert_lex(" // foo", []);
    }

    #[test]
    fn block_comment() {
        assert_lex(" /* foo */ bar", [(Identifier, "bar")]);
        assert_lex(" /** foo **/ bar", [(Identifier, "bar")]);
        assert_lex(" /*abc foo **/ bar", [(Identifier, "bar")]);
    }

    #[test]
    fn method_call() {
        assert_lex(
            "foo.bar();",
            [
                (Identifier, "foo"),
                (Accessor, ".bar"),
                (ParenOpen, "("),
                (ParenClose, ")"),
                (Semicolon, ";"),
            ]
        );
    }

    #[test]
    fn method_call_with_keyword() {
        assert_lex(
            "foo.function();",
            [
                (Identifier, "foo"),
                (Accessor, ".function"),
                (ParenOpen, "("),
                (ParenClose, ")"),
                (Semicolon, ";"),
            ]
        );
    }

    #[test]
    fn simple_math() {
        assert_lex(
            "let foo = 2 + 2;",
            [
                (DeclarationLet, "let"),
                (Identifier, "foo"),
                (OperatorAssign, "="),
                (LiteralNumber, "2"),
                (OperatorAddition, "+"),
                (LiteralNumber, "2"),
                (Semicolon, ";")
            ]
        );
    }

    #[test]
    fn variable_declaration() {
        assert_lex(
            "var x, y, z = 42;",
            [
                (DeclarationVar, "var"),
                (Identifier, "x"),
                (Comma, ","),
                (Identifier, "y"),
                (Comma, ","),
                (Identifier, "z"),
                (OperatorAssign, "="),
                (LiteralNumber, "42"),
                (Semicolon, ";"),
            ]
        );
    }

    #[test]
    fn function_statement() {
        assert_lex(
            "function foo(bar) { return bar }",
            [
                (Function, "function"),
                (Identifier, "foo"),
                (ParenOpen, "("),
                (Identifier, "bar"),
                (ParenClose, ")"),
                (BraceOpen, "{"),
                (Return, "return"),
                (Identifier, "bar"),
                (BraceClose, "}"),
            ]
        );
    }

    #[test]
    fn unexpected_token() {
        assert_lex("..", [(UnexpectedToken, "..")]);
    }

    #[test]
    fn unexpected_end() {
        assert_lex("'foo", [(UnexpectedEndOfProgram, "'foo")]);
    }

    #[test]
    fn keywords() {
        assert_lex(
            "
                break case class const debugger default delete do else
                export extends false finally for function if implements
                import in instanceof interface let new null package
                protected public return static super switch this throw
                true try undefined typeof var void while with yield
            ",
             &[
                (Break, "break"),
                (Case, "case"),
                (Class, "class"),
                (DeclarationConst, "const"),
                (Debugger, "debugger"),
                (Default, "default"),
                (OperatorDelete, "delete"),
                (Do, "do"),
                (Else, "else"),
                (Export, "export"),
                (Extends, "extends"),
                (LiteralFalse, "false"),
                (Finally, "finally"),
                (For, "for"),
                (Function, "function"),
                (If, "if"),
                (ReservedImplements, "implements"),
                (Import, "import"),
                (OperatorIn, "in"),
                (OperatorInstanceof, "instanceof"),
                (ReservedInterface, "interface"),
                (DeclarationLet, "let"),
                (OperatorNew, "new"),
                (LiteralNull, "null"),
                (ReservedPackage, "package"),
                (ReservedProtected, "protected"),
                (ReservedPublic, "public"),
                (Return, "return"),
                (Static, "static"),
                (Super, "super"),
                (Switch, "switch"),
                (This, "this"),
                (Throw, "throw"),
                (LiteralTrue, "true"),
                (Try, "try"),
                (LiteralUndefined, "undefined"),
                (OperatorTypeof, "typeof"),
                (DeclarationVar, "var"),
                (OperatorVoid, "void"),
                (While, "while"),
                (With, "with"),
                (Yield, "yield"),
            ][..]
        );
    }

    #[test]
    fn operators() {
        assert_lex(
            "
                => new ++ -- ! ~ typeof void delete * / % ** + - << >>
                >>> < <= > >= instanceof in === !== == != & ^ | && ||
                ? = += -= **= *= /= %= <<= >>= >>>= &= ^= |= ...
            ",
             &[
                (OperatorFatArrow, "=>"),
                (OperatorNew, "new"),
                (OperatorIncrement, "++"),
                (OperatorDecrement, "--"),
                (OperatorLogicalNot, "!"),
                (OperatorBitwiseNot, "~"),
                (OperatorTypeof, "typeof"),
                (OperatorVoid, "void"),
                (OperatorDelete, "delete"),
                (OperatorMultiplication, "*"),
                (OperatorDivision, "/"),
                (OperatorRemainder, "%"),
                (OperatorExponent, "**"),
                (OperatorAddition, "+"),
                (OperatorSubtraction, "-"),
                (OperatorBitShiftLeft, "<<"),
                (OperatorBitShiftRight, ">>"),
                (OperatorUBitShiftRight, ">>>"),
                (OperatorLesser, "<"),
                (OperatorLesserEquals, "<="),
                (OperatorGreater, ">"),
                (OperatorGreaterEquals, ">="),
                (OperatorInstanceof, "instanceof"),
                (OperatorIn, "in"),
                (OperatorStrictEquality, "==="),
                (OperatorStrictInequality, "!=="),
                (OperatorEquality, "=="),
                (OperatorInequality, "!="),
                (OperatorBitwiseAnd, "&"),
                (OperatorBitwiseXor, "^"),
                (OperatorBitwiseOr, "|"),
                (OperatorLogicalAnd, "&&"),
                (OperatorLogicalOr, "||"),
                (OperatorConditional, "?"),
                (OperatorAssign, "="),
                (OperatorAddAssign, "+="),
                (OperatorSubtractAssign, "-="),
                (OperatorExponentAssign, "**="),
                (OperatorMultiplyAssign, "*="),
                (OperatorDivideAssign, "/="),
                (OperatorRemainderAssign, "%="),
                (OperatorBSLAssign, "<<="),
                (OperatorBSRAssign, ">>="),
                (OperatorUBSRAssign, ">>>="),
                (OperatorBitAndAssign, "&="),
                (OperatorBitXorAssign, "^="),
                (OperatorBitOrAssign, "|="),
                (OperatorSpread, "..."),
            ][..]
        );
    }
}