tree-sitter/spec/runtime/languages/arithmetic/errors.txt
2015-06-15 15:26:06 -07:00

22 lines
467 B
Text

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