Files
helix/tests/query/highlights/java/constructs.java
2026-06-20 14:49:53 +09:00

13 lines
274 B
Java

class Box {
// ^ @type
boolean method(int count) {
// ^ @type.builtin
// ^ @function.method
String s = "a\tb";
// ^ @type
// ^ @constant.character.escape
return helper(count);
// ^ @function.method
}
}