mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-07 05:50:04 -04:00
20 lines
333 B
OpenEdge ABL
20 lines
333 B
OpenEdge ABL
|
|
bring cloud;
|
||
|
|
// <- keyword
|
||
|
|
|
||
|
|
class Foo {
|
||
|
|
// <- keyword
|
||
|
|
// ^ variable
|
||
|
|
// ^ punctuation.bracket
|
||
|
|
name: str;
|
||
|
|
//^ field
|
||
|
|
// ^ type.builtin
|
||
|
|
// ^ punctuation.delimiter
|
||
|
|
init(name: str) {
|
||
|
|
//^ keyword
|
||
|
|
// ^ variable
|
||
|
|
this.name = name;
|
||
|
|
// ^ punctuation.delimiter
|
||
|
|
// ^ operator
|
||
|
|
}
|
||
|
|
}
|