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

22 lines
408 B
Text
Raw Normal View History

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