parser/tests/0070/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

91 lines
1.2 KiB
Plaintext

[
Token {
kind: OpenTag(
Full,
),
span: (
1,
1,
),
},
Token {
kind: Do,
span: (
2,
1,
),
},
Token {
kind: LeftBrace,
span: (
2,
4,
),
},
Token {
kind: Echo,
span: (
3,
5,
),
},
Token {
kind: LiteralString(
"Hi!",
),
span: (
3,
10,
),
},
Token {
kind: SemiColon,
span: (
3,
15,
),
},
Token {
kind: RightBrace,
span: (
4,
1,
),
},
Token {
kind: While,
span: (
4,
3,
),
},
Token {
kind: LeftParen,
span: (
4,
9,
),
},
Token {
kind: True,
span: (
4,
10,
),
},
Token {
kind: RightParen,
span: (
4,
14,
),
},
Token {
kind: SemiColon,
span: (
4,
15,
),
},
]