Rajat Murthi
Rajat Murthi
**What were you trying to accomplish?** Our Kibana instance couldn't parse the ECS layout provided by `LambdaEcsLayout`; we believe thanks to the service field. ## Expected Behavior Service should be...
Consider the following: ```Java public static void consume(String consumed) { consumed.concat("a"); } ``` It is expected that void is highlighted as it is a reserved Java keyword, much like `static`...
record isn't highlighted as a keyword much like class would be: ```java public class ClassTest { public record RecordTest(String text) { } } ```
Fixes #61 (Has examples of the issue). Adding the java 13 `yield` keyword. Details of the keyword: https://docs.oracle.com/en/java/javase/13/language/switch-expressions.html As it's a `break` statement that does `return` a value in a...
yield does not seem to be highlighted as a keyword (example github): ```java String test = switch (eventType) { case CREATE -> Test1; case UPDATE -> { somethingElse = doSomething(input);...