php-parser/test/code/parser/stmt/generator/yieldUnaryPrecedence.test

54 lines
1.3 KiB
Plaintext
Raw Normal View History

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(
2017-01-19 22:25:22 +01:00
0: Stmt_Expression(
expr: Expr_Yield(
key: null
value: Expr_UnaryPlus(
expr: Scalar_LNumber(
value: 1
)
)
)
)
2017-01-19 22:25:22 +01:00
1: Stmt_Expression(
expr: Expr_Yield(
key: null
value: Expr_UnaryMinus(
expr: Scalar_LNumber(
value: 1
)
)
)
)
2017-01-19 22:25:22 +01:00
2: Stmt_Expression(
expr: Expr_BinaryOp_Mul(
left: Expr_Yield(
key: null
value: null
)
right: Expr_UnaryMinus(
expr: Scalar_LNumber(
value: 1
)
)
)
)
)
)
2017-01-19 22:25:22 +01:00
)