diff --git a/src/common/basic/compiler.ts b/src/common/basic/compiler.ts index 0de545ac..2b5eefbb 100644 --- a/src/common/basic/compiler.ts +++ b/src/common/basic/compiler.ts @@ -33,7 +33,9 @@ export interface BASICOptions { // CONTROL FLOW testInitialFor : boolean; // can we skip a NEXT statement? (can't interleave tho) optionalNextVar : boolean; // can do NEXT without variable - ifElse : boolean; // IF...ELSE construct + multipleNextVars : boolean; // NEXT J,I + checkOnGotoIndex : boolean; // fatal error when ON..GOTO index out of bounds + restoreWithLabel : boolean; // RESTORE