tree-sitter-perga/test/corpus/params.txt

33 lines
494 B
Text
Raw Normal View History

2024-11-20 19:29:09 -08:00
==========
Definition
==========
def foo (A : *) (x y z : A) := x;
2024-11-20 19:29:09 -08:00
---
(program
(definition
(identifier)
(param_block
2024-11-20 22:22:24 -08:00
(identifier)
(expr
(app_term
(app
(term
(star))))))
2024-11-20 19:29:09 -08:00
(param_block
2024-11-20 22:22:24 -08:00
(identifier)
(identifier)
(identifier)
(expr
(app_term
(app
(term
(identifier))))))
2024-11-20 19:29:09 -08:00
(expr
(app_term
(app
(term
(identifier)))))))