tree-sitter/spec/runtime/languages/arithmetic/errors.txt
2014-10-19 12:36:43 -07:00

21 lines
408 B
Text

=====================================================
errors at the top level
=====================================================
x * * y
---
(variable) (ERROR '*')
=====================================================
errors inside parenthesized expressions
=====================================================
x + (y * + z) * 5
---
(sum
(variable)
(product (group (ERROR '+')) (number)))