erg-lang / erg

A statically typed language compatible with Python
http://erg-lang.org
Apache License 2.0
2.69k stars 55 forks source link

When too many lines, the code will not be evaluated well #310

Closed GreasySlug closed 1 year ago

GreasySlug commented 1 year ago

Describe the behavior When the number of lines are more than 245, subsequent lines are not evaluated. I used " evaluated", but it is not accurate.

Reproducible code

a_1 = 1
...
a_243 = 1
print!  "Finished"

Expected behavior display "Finished"

Current behavior don't display it

Screenshots (optional)

244

245

OS Windows 10

Additional context

I think parse, codegen, etc. are working well. However, the CPython command/instruction seems to be wrong.