Compare commits
4 commits
eb1d371499
...
2917939176
Author | SHA1 | Date | |
---|---|---|---|
Bruno BELANYI | 2917939176 | ||
Bruno BELANYI | 268dd92906 | ||
Bruno BELANYI | 9d9238f284 | ||
Bruno BELANYI | 089a585a41 |
|
@ -16,9 +16,4 @@
|
||||||
(method_declaration)
|
(method_declaration)
|
||||||
] @fold
|
] @fold
|
||||||
|
|
||||||
[
|
|
||||||
(comment)
|
|
||||||
(string_literal)
|
|
||||||
] @ignore
|
|
||||||
|
|
||||||
; vim: sw=2 foldmethod=marker
|
; vim: sw=2 foldmethod=marker
|
||||||
|
|
|
@ -34,30 +34,25 @@
|
||||||
"method"
|
"method"
|
||||||
] @keyword.method
|
] @keyword.method
|
||||||
|
|
||||||
|
[
|
||||||
|
"import"
|
||||||
|
] @include
|
||||||
|
|
||||||
[
|
[
|
||||||
"array"
|
"array"
|
||||||
(break_expression)
|
(break_expression)
|
||||||
"do"
|
|
||||||
"else"
|
"else"
|
||||||
"end"
|
"end"
|
||||||
"for"
|
|
||||||
"function"
|
|
||||||
"if"
|
"if"
|
||||||
"import"
|
|
||||||
"in"
|
"in"
|
||||||
"let"
|
"let"
|
||||||
"of"
|
"of"
|
||||||
"primitive"
|
|
||||||
"then"
|
"then"
|
||||||
"to"
|
|
||||||
"type"
|
"type"
|
||||||
"var"
|
"var"
|
||||||
"while"
|
|
||||||
|
|
||||||
"class"
|
"class"
|
||||||
"extends"
|
"extends"
|
||||||
"method"
|
|
||||||
"new"
|
|
||||||
|
|
||||||
"_cast"
|
"_cast"
|
||||||
"_chunks"
|
"_chunks"
|
||||||
|
|
|
@ -31,8 +31,9 @@
|
||||||
; Class {{{
|
; Class {{{
|
||||||
(class_declaration
|
(class_declaration
|
||||||
fields: (_)* @class.inner) @class.outer
|
fields: (_)* @class.inner) @class.outer
|
||||||
|
(type_declaration
|
||||||
(class_type
|
(class_type
|
||||||
fields: (_)* @class.inner) @class.outer
|
fields: (_)* @class.inner)) @class.outer
|
||||||
; }}}
|
; }}}
|
||||||
|
|
||||||
; Misc {{{
|
; Misc {{{
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
import "lib.tih"
|
import "lib.tih"
|
||||||
/* <- keyword */
|
/* <- include */
|
||||||
/* ^ string.special.path */
|
/* ^ string.special.path */
|
||||||
|
|
|
@ -10,7 +10,7 @@ let
|
||||||
/* <- keyword.function */
|
/* <- keyword.function */
|
||||||
|
|
||||||
import "lib.tih"
|
import "lib.tih"
|
||||||
/* <- keyword */
|
/* <- include */
|
||||||
|
|
||||||
type array_of_int = array of int
|
type array_of_int = array of int
|
||||||
/* <- keyword */
|
/* <- keyword */
|
||||||
|
|
Loading…
Reference in a new issue