about summary refs log tree commit diff
path: root/src/comp/syntax/parse
diff options
context:
space:
mode:
authorLindsey Kuper <lkuper@mozilla.com>2011-08-19 11:39:41 -0700
committerLindsey Kuper <lkuper@mozilla.com>2011-08-19 12:01:55 -0700
commit325ea41a1ef2b648cc032f4b0370f285d6d4821a (patch)
tree6a91fefecd6b363b4a50a7b4f0125f0753a91bc0 /src/comp/syntax/parse
parenta7e559ee2e04799adfb92b0d8a54758678c170dc (diff)
downloadrust-325ea41a1ef2b648cc032f4b0370f285d6d4821a.tar.gz
rust-325ea41a1ef2b648cc032f4b0370f285d6d4821a.zip
Getting rid of superfluous log statement.
Diffstat (limited to 'src/comp/syntax/parse')
-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),