2. Click on any part of the code
<?php
$this->someMethod(namedArg: \true);
3. See Abstract Syntax Tree created by php-parser for full file
PhpParser\Node\Stmt\Expression(
expr: PhpParser\Node\Expr\MethodCall(
var: PhpParser\Node\Expr\Variable( name: "this" )
name: PhpParser\Node\Identifier( name: "someMethod" )
args: [
0: PhpParser\Node\Arg(
name: PhpParser\Node\Identifier( name: "namedArg" )
value: PhpParser\Node\Expr\ConstFetch(
name: PhpParser\Node\Name\FullyQualified( parts: ["true"] )
)
byRef: false
unpack: false
)
]
)
)