about summary refs log tree commit diff
path: root/src/comp/syntax/parse
diff options
context:
space:
mode:
authorMarijn Haverbeke <marijnh@gmail.com>2012-02-22 11:44:11 +0100
committerMarijn Haverbeke <marijnh@gmail.com>2012-02-22 11:47:47 +0100
commitad03761a97eb0f651e3ce4f54cbf87dbf4d6f80f (patch)
tree03eb60b2d440ebfc6b668e359c28fe0e8e69b042 /src/comp/syntax/parse
parente57b6775c3a2d9dbe7fae69c189b8ae9032315cb (diff)
downloadrust-ad03761a97eb0f651e3ce4f54cbf87dbf4d6f80f.tar.gz
rust-ad03761a97eb0f651e3ce4f54cbf87dbf4d6f80f.zip
Remove preconditions from libraries
Closes #1805
Diffstat (limited to 'src/comp/syntax/parse')
-rw-r--r--src/comp/syntax/parse/parser.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/comp/syntax/parse/parser.rs b/src/comp/syntax/parse/parser.rs
index a6f56b611d7..7cdb5667665 100644
--- a/src/comp/syntax/parse/parser.rs
+++ b/src/comp/syntax/parse/parser.rs
@@ -888,7 +888,6 @@ fn parse_bottom_expr(p: parser) -> pexpr {
         /* Should be a predicate (pure boolean function) applied to
            arguments that are all either slot variables or literals.
            but the typechecker enforces that. */
-
         let e = parse_expr(p);
         hi = e.span.hi;
         ex = ast::expr_check(ast::checked_expr, e);