mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-04 18:28:25 +01:00
61e060694d
And split tokens.y off, so I don't waste time debugging this again...
49 lines
1.0 KiB
Plaintext
49 lines
1.0 KiB
Plaintext
Yield with unary operator argument
|
|
-----
|
|
<?php
|
|
|
|
function gen() {
|
|
yield +1;
|
|
yield -1;
|
|
yield * -1;
|
|
}
|
|
-----
|
|
array(
|
|
0: Stmt_Function(
|
|
byRef: false
|
|
name: gen
|
|
params: array(
|
|
)
|
|
returnType: null
|
|
stmts: array(
|
|
0: Expr_Yield(
|
|
key: null
|
|
value: Expr_UnaryPlus(
|
|
expr: Scalar_LNumber(
|
|
value: 1
|
|
)
|
|
)
|
|
)
|
|
1: Expr_Yield(
|
|
key: null
|
|
value: Expr_UnaryMinus(
|
|
expr: Scalar_LNumber(
|
|
value: 1
|
|
)
|
|
)
|
|
)
|
|
2: Expr_BinaryOp_Mul(
|
|
left: Expr_Yield(
|
|
key: null
|
|
value: null
|
|
)
|
|
right: Expr_UnaryMinus(
|
|
expr: Scalar_LNumber(
|
|
value: 1
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|