We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Arrays.<Object> asList ( "a" , "b" )
When use javalang.parser.Parser to parse some statements like Arrays.<Object> asList ( "a" , "b" ), the node is printed as:
javalang.parser.Parser
MethodInvocation(arguments=[Literal(postfix_operators=[], prefix_operators=[], qualifier=None, selectors=[], value="a"), Literal(postfix_operators=[], prefix_operators=[], qualifier=None, selectors=[], value="b")], member=Arrays, postfix_operators=[], prefix_operators=[], qualifier=, selectors=[], type_arguments=[TypeArgument(pattern_type=None, type=ReferenceType(arguments=None, dimensions=[], name=Object, sub_type=None))])
While the qualifier of this MethodInvocation should be Arrays and the member should be asList.
qualifier
Arrays
member
asList
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When use
javalang.parser.Parser
to parse some statements likeArrays.<Object> asList ( "a" , "b" )
, the node is printed as:While the
qualifier
of this MethodInvocation should beArrays
and themember
should beasList
.The text was updated successfully, but these errors were encountered: