mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-03 09:47:59 +01:00
a6846e3b71
The parser will now always generate Identifier nodes (for non-namespaced identifiers). This obsoletes the useIdentifierNodes parser option. Node constructors still accepts strings and will implicitly create an Identifier wrapper. Identifier implement __toString(), so that outside of strict-mode many things continue to work without changes.
56 lines
1.3 KiB
Plaintext
56 lines
1.3 KiB
Plaintext
Yield with unary operator argument
|
|
-----
|
|
<?php
|
|
|
|
function gen() {
|
|
yield +1;
|
|
yield -1;
|
|
yield * -1;
|
|
}
|
|
-----
|
|
array(
|
|
0: Stmt_Function(
|
|
byRef: false
|
|
name: Identifier(
|
|
name: gen
|
|
)
|
|
params: array(
|
|
)
|
|
returnType: null
|
|
stmts: array(
|
|
0: Stmt_Expression(
|
|
expr: Expr_Yield(
|
|
key: null
|
|
value: Expr_UnaryPlus(
|
|
expr: Scalar_LNumber(
|
|
value: 1
|
|
)
|
|
)
|
|
)
|
|
)
|
|
1: Stmt_Expression(
|
|
expr: Expr_Yield(
|
|
key: null
|
|
value: Expr_UnaryMinus(
|
|
expr: Scalar_LNumber(
|
|
value: 1
|
|
)
|
|
)
|
|
)
|
|
)
|
|
2: Stmt_Expression(
|
|
expr: Expr_BinaryOp_Mul(
|
|
left: Expr_Yield(
|
|
key: null
|
|
value: null
|
|
)
|
|
right: Expr_UnaryMinus(
|
|
expr: Scalar_LNumber(
|
|
value: 1
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
) |