tree-sitter/spec/runtime/languages/arithmetic/errors.txt

23 lines
477 B
Text
Raw Normal View History

=====================================================
errors at the top level
=====================================================
x * * y
---
2015-08-22 10:48:34 -07:00
(ERROR (variable) (UNEXPECTED '*') (variable))
=====================================================
errors inside parenthesized expressions
=====================================================
x + (y * + z) * 5
---
(program (sum
2015-06-15 15:24:15 -07:00
(variable)
(product
(group (ERROR (variable) (UNEXPECTED '+') (variable))) (number))))