matthiasblaesing opened a new pull request, #5677:
URL: https://github.com/apache/netbeans/pull/5677
With this PR the modifiers are now reported correctly for the following
testcase, which is based on the original report in #4371:
```javascript
class test {
fieldTest1 = 0;
#fieldTest2 = 1;
static fieldTest3 = 2;
static #fieldTest4 = 3;
// private
#test1() {};
async #test2() {}
// public
test3() {}
async test4() {}
// static private
static #test5() {}
static async #test6() {}
// static public
static test7() {}
static async test8() {}
}
```
Resulting structure:

Closes: #4371
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists