Specifically, consider the following:
```lang=php
class Foo {
public function bar() {}
function baz() {}
}
```
Previously when parsing this code with `xhpast` we get `a node of type n_METHOD_DECLARATION: "public function bar() {}"` and `a node of type n_METHOD_DECLARATION: "baz() {}"`. After this change, `xhpast` correctly parses this as `a node of type n_METHOD_DECLARATION: "public function bar() {}"` and `a node of type n_METHOD_DECLARATION: "function baz() {}"`.