PHP-Parser
PHP-Parser copied to clipboard
Add error nodes for additional missing params?
Given the following
function bar(object $o) : void {
$o->foo(
$one,
,
);
}
there's no MethodCall node - I wonder whether it'd be possible to preserve the node, and allow its args array to contain errors as well as arg objects?