tokay-lang / tokay

Tokay is a programming language designed for ad-hoc parsing, inspired by awk.
https://tokay.dev
MIT License
239 stars 7 forks source link

Source position not always available #46

Closed phorward closed 2 years ago

phorward commented 2 years ago
Tokay 0.5.0
>>> l = list()
>>> l += 1
>>> l
list(1)
>>> l += 2
>>> l
(1, 2)
>>> l -= 1
Method 'list_sub' not found

Expected error message: Line 1, column 1: Method 'list_sub' not found