tree-sitter/spec/runtime/languages/arithmetic/errors.txt
2014-03-22 15:19:13 -07:00

16 lines
No EOL
459 B
Text

=====================================================
recovers from errors at the top level
=====================================================
x * * y
---
(ERROR)
=====================================================
recovers from errors inside parenthesized expressions
=====================================================
x + (y * + z) * 5
---
(expression
(term (factor (variable)))
(plus)
(term (factor (ERROR)) (times) (factor (number))))