mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-11-27 04:14:44 +01:00
Merge branch '1.x'
This commit is contained in:
commit
f872fa9b0b
@ -278,6 +278,10 @@ class Lexer
|
||||
if (defined('T_ONUMBER')) {
|
||||
$tokenMap[T_ONUMBER] = Tokens::T_DNUMBER;
|
||||
}
|
||||
// HHVM also has a separate token for the __COMPILER_HALT_OFFSET__ constant
|
||||
if (defined('T_COMPILER_HALT_OFFSET')) {
|
||||
$tokenMap[T_COMPILER_HALT_OFFSET] = Tokens::T_STRING;
|
||||
}
|
||||
|
||||
return $tokenMap;
|
||||
}
|
||||
|
34
test/code/parser/stmt/haltCompilerOffset.test
Normal file
34
test/code/parser/stmt/haltCompilerOffset.test
Normal file
@ -0,0 +1,34 @@
|
||||
Use of __HALT_COMPILER_OFFSET__ constant
|
||||
-----
|
||||
<?php
|
||||
|
||||
var_dump(__HALT_COMPILER_OFFSET__);
|
||||
__halt_compiler();
|
||||
Foo
|
||||
-----
|
||||
array(
|
||||
0: Expr_FuncCall(
|
||||
name: Name(
|
||||
parts: array(
|
||||
0: var_dump
|
||||
)
|
||||
)
|
||||
args: array(
|
||||
0: Arg(
|
||||
value: Expr_ConstFetch(
|
||||
name: Name(
|
||||
parts: array(
|
||||
0: __HALT_COMPILER_OFFSET__
|
||||
)
|
||||
)
|
||||
)
|
||||
byRef: false
|
||||
unpack: false
|
||||
)
|
||||
)
|
||||
)
|
||||
1: Stmt_HaltCompiler(
|
||||
remaining:
|
||||
Foo
|
||||
)
|
||||
)
|
Loading…
Reference in New Issue
Block a user