Oxygen Basic

Programming => Problems & Solutions => Topic started by: Brian Alvarez on August 15, 2020, 04:15:04 PM

Title: unexpected end of prog
Post 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:

Code: [Select]
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.
Title: Re: unexpected end of prog
Post by: Charles Pegge on August 15, 2020, 11:57:11 PM
Hi Brian,

'unexpected end of prog' occurs when the source code terminates with an incomplete expression.

For example:
int a
a=1 +

Title: Re: unexpected end of prog
Post by: JRS on August 16, 2020, 06:45:20 AM
My vote is a syntax error message.
Title: Re: unexpected end of prog
Post by: Brian Alvarez on August 16, 2020, 07:50:22 AM
'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.
Title: Re: unexpected end of prog
Post by: Charles Pegge on August 16, 2020, 09:42:13 AM

The error is triggered when the expression evaluator runs out of symbols/words from the source stream. Usually caused by corruption somewhere ..
Title: Re: unexpected end of prog
Post by: Brian Alvarez on August 16, 2020, 10:26:08 AM
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!