about summary refs log tree commit diff
path: root/src/comp/syntax/parse/parser.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/comp/syntax/parse/parser.rs')
-rw-r--r--src/comp/syntax/parse/parser.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/comp/syntax/parse/parser.rs b/src/comp/syntax/parse/parser.rs
index cc7eb9dcc49..5361a686814 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),