Skip to content

Commit

Permalink
Minor cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Dec 3, 2017
1 parent 5c3db13 commit a31aca3
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions mojobasic_parser.cpp
Expand Up @@ -470,8 +470,8 @@ AstStatement *Parser::parseStatement() {
else if (want(TOKEN_EXIT)) return parseExit();
else if (want(TOKEN_END)) return parseEnd();

// these are just function calls into the standard runtime, but they
// have magic syntactic sugar in BASIC...
// these are just function calls into the standard runtime, but they
// have magic syntactic sugar in BASIC...
else if (want(TOKEN_PRINT) || want(TOKEN_QUESTION)) return parsePrint();
else if (want(TOKEN_OPEN)) return parseOpen();
else if (want(TOKEN_CLOSE)) return parseClose();
Expand Down Expand Up @@ -1569,9 +1569,5 @@ AstExpression *Parser::parseSubExpression() {
return NULL;
} // Parser::parseSubExpression


//assignment_statement
//label

// end of mojobasic_parser.cpp ...

0 comments on commit a31aca3

Please sign in to comment.