Convert all fns to block arg syntax.

This commit is contained in:
Bob Nystrom
2014-04-02 19:41:53 -07:00
parent a550d6cea4
commit d146018559
61 changed files with 124 additions and 127 deletions
+7 -1
View File
@@ -855,7 +855,6 @@ static void nextToken(Parser* parser)
case TOKEN_PERCENT:
case TOKEN_PLUS:
case TOKEN_MINUS:
case TOKEN_PIPE:
case TOKEN_PIPEPIPE:
case TOKEN_AMP:
case TOKEN_AMPAMP:
@@ -1987,6 +1986,13 @@ void infixOp(Compiler* compiler, bool allowAssignment)
{
GrammarRule* rule = &rules[compiler->parser->previous.type];
// The pipe operator does not swallow a newline after it because when it's
// used as a block argument delimiter, the newline is significant. So,
// discard it here.
// TODO: Do something cleaner. Having the newline handling be context
// sensitive is super gross.
match(compiler, TOKEN_LINE);
// Compile the right-hand side.
parsePrecedence(compiler, false, rule->precedence + 1);