mirror of
https://github.com/danog/parser.git
synced 2024-11-30 04:29:13 +01:00
meta: output commands when running files
This commit is contained in:
parent
58504a95f4
commit
bd21dc2132
@ -1,5 +1,7 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -xe
|
||||
|
||||
dir=$(realpath $1)
|
||||
|
||||
for file in $(find $dir -name "*.php")
|
||||
|
@ -429,7 +429,7 @@ impl Lexer {
|
||||
self.col += 1;
|
||||
TokenKind::RightBracket
|
||||
},
|
||||
_ => unimplemented!("<scripting> char: {}", char),
|
||||
_ => unimplemented!("<scripting> char: {}, line: {}, col: {}", char, self.line, self.col),
|
||||
};
|
||||
|
||||
Ok(Token {
|
||||
|
Loading…
Reference in New Issue
Block a user