diff --git a/SMILEBASIC/parser.d b/SMILEBASIC/parser.d index 2c86a56..b806638 100644 --- a/SMILEBASIC/parser.d +++ b/SMILEBASIC/parser.d @@ -1045,6 +1045,7 @@ class Parser case TokenType.Break: node = new Break(lex.location); break; + case TokenType.Next: case TokenType.Continue: node = new Continue(lex.location); break;