mirror of
https://github.com/helix-editor/helix
synced 2026-08-05 14:42:57 +02:00
13 lines
274 B
Java
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
|
|
}
|
|
}
|