diff options
| author | Graydon Hoare <graydon@mozilla.com> | 2011-12-21 15:43:38 -0800 |
|---|---|---|
| committer | Graydon Hoare <graydon@mozilla.com> | 2011-12-21 15:43:38 -0800 |
| commit | 5d1cf2a872ec9269be9fffeab3bb913c9616797a (patch) | |
| tree | 435681e354aa334aa1ad9247cd731c5c15121787 /src/comp/syntax/parse | |
| parent | 8fd5802c654c88dde6795b7652b20089dca962a4 (diff) | |
Out-of-order-code typo. Snapshot again.
Diffstat (limited to 'src/comp/syntax/parse')
| -rw-r--r-- | src/comp/syntax/parse/parser.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp/syntax/parse/parser.rs b/src/comp/syntax/parse/parser.rs index 0b19ec47918..d12943202c7 100644 --- a/src/comp/syntax/parse/parser.rs +++ b/src/comp/syntax/parse/parser.rs @@ -910,8 +910,8 @@ fn parse_bottom_expr(p: parser) -> @ast::expr { ex = ast::expr_fail(some(e)); } else { ex = ast::expr_fail(none); } } else if eat_word(p, "log_full") { - let e = parse_expr(p); let lvl = parse_expr(p); + let e = parse_expr(p); ex = ast::expr_log(2, lvl, e); hi = e.span.hi; } else if eat_word(p, "log") { |
