basically working

This commit is contained in:
William Ball 2024-11-20 22:22:24 -08:00
parent 3db7a588ad
commit e5e219e0e9
2 changed files with 14 additions and 28 deletions

View file

@ -1,8 +0,0 @@
[ "fun" "λ" "forall" "∏" ] @keyword
[ "->" "=>" "→" "⇒" "," ":=" ";" ":" ] @punctuation.delimiter
[ "(" ")" ] @punctuation.bracket
;[ "*" "□" "[]" ] @constant.builtin
(comment) @comment
(identifier) @variable
;(param) @variable.parameter
;(type) @type

View file

@ -10,27 +10,21 @@ foo (A : *) (x y z : A) := x;
(definition
(identifier)
(param_block
(param
(identifier))
(type
(identifier)
(expr
(app_term
(app
(term
(star)))))))
(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