basically working
This commit is contained in:
parent
3db7a588ad
commit
e5e219e0e9
2 changed files with 14 additions and 28 deletions
|
|
@ -1,8 +0,0 @@
|
||||||
[ "fun" "λ" "forall" "∏" ] @keyword
|
|
||||||
[ "->" "=>" "→" "⇒" "," ":=" ";" ":" ] @punctuation.delimiter
|
|
||||||
[ "(" ")" ] @punctuation.bracket
|
|
||||||
;[ "*" "□" "[]" ] @constant.builtin
|
|
||||||
(comment) @comment
|
|
||||||
(identifier) @variable
|
|
||||||
;(param) @variable.parameter
|
|
||||||
;(type) @type
|
|
||||||
|
|
@ -10,27 +10,21 @@ foo (A : *) (x y z : A) := x;
|
||||||
(definition
|
(definition
|
||||||
(identifier)
|
(identifier)
|
||||||
(param_block
|
(param_block
|
||||||
(param
|
(identifier)
|
||||||
(identifier))
|
|
||||||
(type
|
|
||||||
(expr
|
(expr
|
||||||
(app_term
|
(app_term
|
||||||
(app
|
(app
|
||||||
(term
|
(term
|
||||||
(star)))))))
|
(star))))))
|
||||||
(param_block
|
(param_block
|
||||||
(param
|
(identifier)
|
||||||
(identifier))
|
(identifier)
|
||||||
(param
|
(identifier)
|
||||||
(identifier))
|
(expr
|
||||||
(param
|
(app_term
|
||||||
(identifier))
|
(app
|
||||||
(type
|
(term
|
||||||
(expr
|
(identifier))))))
|
||||||
(app_term
|
|
||||||
(app
|
|
||||||
(term
|
|
||||||
(identifier)))))))
|
|
||||||
(expr
|
(expr
|
||||||
(app_term
|
(app_term
|
||||||
(app
|
(app
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue