PHP-Parser icon indicating copy to clipboard operation
PHP-Parser copied to clipboard

Add error nodes for additional missing params?

Open muglug opened this issue 6 years ago • 0 comments

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?

muglug avatar Jun 25 '19 22:06 muglug