Compare commits

..

No commits in common. "29179391764267c4995f1d4a8f93006ad6594503" and "eb1d3714998977ae76ca7c6a102b10ee37efc2b5" have entirely different histories.

5 changed files with 18 additions and 9 deletions

View file

@ -16,4 +16,9 @@
(method_declaration)
] @fold
[
(comment)
(string_literal)
] @ignore
; vim: sw=2 foldmethod=marker

View file

@ -34,25 +34,30 @@
"method"
] @keyword.method
[
"import"
] @include
[
"array"
(break_expression)
"do"
"else"
"end"
"for"
"function"
"if"
"import"
"in"
"let"
"of"
"primitive"
"then"
"to"
"type"
"var"
"while"
"class"
"extends"
"method"
"new"
"_cast"
"_chunks"

View file

@ -31,9 +31,8 @@
; Class {{{
(class_declaration
fields: (_)* @class.inner) @class.outer
(type_declaration
(class_type
fields: (_)* @class.inner)) @class.outer
(class_type
fields: (_)* @class.inner) @class.outer
; }}}
; Misc {{{

View file

@ -1,3 +1,3 @@
import "lib.tih"
/* <- include */
/* <- keyword */
/* ^ string.special.path */

View file

@ -10,7 +10,7 @@ let
/* <- keyword.function */
import "lib.tih"
/* <- include */
/* <- keyword */
type array_of_int = array of int
/* <- keyword */