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
creating a new instance of an inner class doesn't highlight the new keyword properly
new
// Outer.java class Outer { class Inner { } } // Program.java class Program { public static void main(String[] args) { Outer outer = new Outer(); Outer.Inner inner = outer.new Inner(); } }
The text was updated successfully, but these errors were encountered:
The textmate grammar is defined in vscode itself, but the source of the grammar is actually atom, so the problem should be reported there: https://github.com/atom/language-java/issues
Sorry, something went wrong.
sounds similar to atom/language-java#216
atom/language-java#216 looks more about the identifiers in new statements, not the new keyword itself. So I just created atom/language-java#228 dedicated for this one
hopehadfield
Successfully merging a pull request may close this issue.
creating a new instance of an inner class doesn't highlight the
new
keyword properlyEnvironment
Steps To Reproduce
Current Result
Expected Result
The text was updated successfully, but these errors were encountered: