Skip to content

Commit 325ea41

Browse files
committed
Getting rid of superfluous log statement.
1 parent a7e559e commit 325ea41

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/comp/syntax/parse/parser.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1033,10 +1033,8 @@ fn parse_bottom_expr(p: &parser) -> @ast::expr {
10331033
ex = ast::expr_copy(e);
10341034
hi = e.span.hi;
10351035
} else if (eat_word(p, "self")) {
1036-
log "parsing a self-call...";
10371036
expect(p, token::DOT);
10381037
// The rest is a call expression.
1039-
10401038
let f: @ast::expr = parse_self_method(p);
10411039
let es =
10421040
parse_seq(token::LPAREN, token::RPAREN, some(token::COMMA),

0 commit comments

Comments
 (0)