berry-lang / berry

A ultra-lightweight embedded scripting language optimized for microcontrollers.
https://berry-lang.github.io
MIT License
812 stars 97 forks source link

Fix connect when right part is undefined variable #415

Closed s-hadinger closed 5 months ago

s-hadinger commented 5 months ago
print("a"..x)

Should raise an exception syntax_error: stdin:1: 'x' undeclared (first use in this function)

Before this patch, it would be interpreted as

print("a"..MAXINT)

Solves: #414