mirror of
https://github.com/danog/parser.git
synced 2024-12-02 09:27:50 +01:00
ac42958b4f
- 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
6 lines
151 B
PHP
6 lines
151 B
PHP
<?php
|
|
|
|
// while PHP allows this, we shouldn't, it's a syntax error that most parsers for other languages,
|
|
// including Rust, don't allow.
|
|
$a = "\666";
|