parser/tests/0126/tokens.txt
Saif Eddin Gmati ac42958b4f chore: refactor project structure
- added `prelude`
- moved `ast` to `parser`
- moved `Lexer` from `crate::lexer::lexer::Lexer` to `crate::lexer::Lexer`
- renamed `LexerError` to `SyntaxError`
- moved `SyntaxError` to `token::error`
- implemented `Display` for `SyntaxError`
- add `tokens.txt` to integration tests
- removed all unit tests for `Lexer` ( everything is tested in integration tests )
- improved syntax error assertations
2022-12-04 08:56:53 +00:00

95 lines
1.3 KiB
Plaintext

[
Token {
kind: OpenTag(
Full,
),
span: (
1,
1,
),
},
Token {
kind: Class,
span: (
3,
1,
),
},
Token {
kind: Identifier(
"foo",
),
span: (
3,
7,
),
},
Token {
kind: LeftBrace,
span: (
3,
11,
),
},
Token {
kind: Final,
span: (
4,
5,
),
},
Token {
kind: Private,
span: (
4,
11,
),
},
Token {
kind: Const,
span: (
4,
19,
),
},
Token {
kind: Identifier(
"BAR",
),
span: (
4,
25,
),
},
Token {
kind: Equals,
span: (
4,
29,
),
},
Token {
kind: LiteralInteger(
3,
),
span: (
4,
31,
),
},
Token {
kind: SemiColon,
span: (
4,
32,
),
},
Token {
kind: RightBrace,
span: (
5,
1,
),
},
]