From 325ea41a1ef2b648cc032f4b0370f285d6d4821a Mon Sep 17 00:00:00 2001 From: Lindsey Kuper Date: Fri, 19 Aug 2011 11:39:41 -0700 Subject: [PATCH] Getting rid of superfluous log statement. --- src/comp/syntax/parse/parser.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/comp/syntax/parse/parser.rs b/src/comp/syntax/parse/parser.rs index cc7eb9dcc49d..5361a686814a 100644 --- a/src/comp/syntax/parse/parser.rs +++ b/src/comp/syntax/parse/parser.rs @@ -1033,10 +1033,8 @@ fn parse_bottom_expr(p: &parser) -> @ast::expr { ex = ast::expr_copy(e); hi = e.span.hi; } else if (eat_word(p, "self")) { - log "parsing a self-call..."; expect(p, token::DOT); // The rest is a call expression. - let f: @ast::expr = parse_self_method(p); let es = parse_seq(token::LPAREN, token::RPAREN, some(token::COMMA),