Unnamed repository; edit this file 'description' to name the repository.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(function ((identifier) @function))
; method calls
(term (_) ("." @punctuation) ((function ((identifier) @function.method))))

["(" ")"] @punctuation.bracket
"," @punctuation.delimiter

((identifier) @keyword.control.conditional (#eq? @keyword.control.conditional "if"))
((identifier) @keyword.control.repeat (#eq? @keyword.control.repeat "for"))

(term ((identifier) @variable))

[(infix_ops) "++"] @operator
[(string_literal) (raw_string_literal)] @string

(integer_literal) @constant.numeric.integer