mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 19:17:02 -04:00
19 lines
352 B
OpenEdge ABL
19 lines
352 B
OpenEdge ABL
bring cloud;
|
|
// <- @keyword
|
|
|
|
class Foo {
|
|
// <- @keyword
|
|
// ^ @variable
|
|
// ^ @punctuation.bracket
|
|
name: str;
|
|
//^ @variable.member
|
|
// ^ @type.builtin
|
|
// ^ @punctuation.delimiter
|
|
new(name: str) {
|
|
//^ @keyword
|
|
// ^ @variable
|
|
this.name = name;
|
|
// ^ @punctuation.delimiter
|
|
// ^ @operator
|
|
}
|
|
}
|