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
|
||||
(identifier)
|
||||
(param_block
|
||||
(param
|
||||
(identifier))
|
||||
(type
|
||||
(expr
|
||||
(app_term
|
||||
(app
|
||||
(term
|
||||
(star)))))))
|
||||
(identifier)
|
||||
(expr
|
||||
(app_term
|
||||
(app
|
||||
(term
|
||||
(star))))))
|
||||
(param_block
|
||||
(param
|
||||
(identifier))
|
||||
(param
|
||||
(identifier))
|
||||
(param
|
||||
(identifier))
|
||||
(type
|
||||
(expr
|
||||
(app_term
|
||||
(app
|
||||
(term
|
||||
(identifier)))))))
|
||||
(identifier)
|
||||
(identifier)
|
||||
(identifier)
|
||||
(expr
|
||||
(app_term
|
||||
(app
|
||||
(term
|
||||
(identifier))))))
|
||||
(expr
|
||||
(app_term
|
||||
(app
|
||||
|
|
|
|||
Loading…
Reference in a new issue