parser/tests/0083/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: Declare,
span: (
1,
7,
),
},
Token {
kind: LeftParen,
span: (
1,
14,
),
},
Token {
kind: Identifier(
"A",
),
span: (
1,
15,
),
},
Token {
kind: Equals,
span: (
1,
16,
),
},
Token {
kind: LiteralString(
"B",
),
span: (
1,
17,
),
},
Token {
kind: RightParen,
span: (
1,
20,
),
},
Token {
kind: LeftBrace,
span: (
1,
22,
),
},
Token {
kind: Echo,
span: (
1,
24,
),
},
Token {
kind: LiteralString(
"Hello, world!",
),
span: (
1,
29,
),
},
Token {
kind: SemiColon,
span: (
1,
44,
),
},
Token {
kind: RightBrace,
span: (
1,
46,
),
},
]