Oxygen Basic
Programming => Problems & Solutions => Topic started by: Brian Alvarez on August 15, 2020, 04:15:04 PM
-
I am sooo close to self-compiling for 64bits... but I am getting this:
ERROR: ERROR: unexpected end of prog
WORD: istrue
IN: handlemodules
LINE: 61547
FILE: "main source
What could be causing this? The program is actually 82337 lines long. I am attaching a picture.
-
Hi Brian,
'unexpected end of prog' occurs when the source code terminates with an incomplete expression.
For example:
int a
a=1 +
-
My vote is a syntax error message.
-
'unexpected end of prog' occurs when the source code terminates with an incomplete expression.
Ahhh you mean "unexpected end of statement". It didnt occured to me to check the statement syntax because i thought internally oxygen was getting an EOF in the source code.
I will check that, maybe I am generating a stray parenteses or something.
-
The error is triggered when the expression evaluator runs out of symbols/words from the source stream. Usually caused by corruption somewhere ..
-
Yes. I was converting an exceptionally long IF condition. I was checking only 128 tokens after the IF and the condition was 230 tokens long. I increased the token check to 2048 tokens. Hopefully it will be enough. Thanks!