1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-03 17:57:59 +01:00
PHP-Parser/test/code/parser/expr/closure.test
nikic 81e53ce0ff Insert comments when pretty printing
This changset also adds unit tests for Comments and adds a way to test the
pretty printer.
2012-05-11 16:18:14 +02:00

94 lines
1.7 KiB
Plaintext

Closures
-----
<?php
function($a) { $a; };
function($a) use($b) {};
function() use($a, &$b) {};
function &($a) {};
static function() {};
-----
array(
0: Expr_Closure(
static: false
byRef: false
params: array(
0: Param(
name: a
default: null
type: null
byRef: false
)
)
uses: array(
)
stmts: array(
0: Expr_Variable(
name: a
)
)
)
1: Expr_Closure(
static: false
byRef: false
params: array(
0: Param(
name: a
default: null
type: null
byRef: false
)
)
uses: array(
0: Expr_ClosureUse(
var: b
byRef: false
)
)
stmts: array(
)
)
2: Expr_Closure(
static: false
byRef: false
params: array(
)
uses: array(
0: Expr_ClosureUse(
var: a
byRef: false
)
1: Expr_ClosureUse(
var: b
byRef: true
)
)
stmts: array(
)
)
3: Expr_Closure(
static: false
byRef: true
params: array(
0: Param(
name: a
default: null
type: null
byRef: false
)
)
uses: array(
)
stmts: array(
)
)
4: Expr_Closure(
static: true
byRef: false
params: array(
)
uses: array(
)
stmts: array(
)
)
)