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