### Description creating a new instance of an inner class doesn't highlight the `new` keyword properly inner ### Steps to Reproduce ```java public class Foo { public class Bar { } } public class Main { public static void main(String[] args) { Foo example1 = new Foo(); Foo.Bar example2 = example1.new Bar(); // <---- } } ``` **Expected behavior:** keyword `new` is correctly highlighted. **Actual behavior:** 
Description
creating a new instance of an inner class doesn't highlight the
newkeyword properlyinner
Steps to Reproduce
Expected behavior:
keyword
newis correctly highlighted.Actual behavior:
