aboutsummaryrefslogtreecommitdiff
path: root/src/comp/front/eval.rs
diff options
context:
space:
mode:
authorGraydon Hoare <[email protected]>2011-04-19 13:35:49 -0700
committerGraydon Hoare <[email protected]>2011-04-19 13:35:49 -0700
commitd2bd07dcb02783063375b6c8532fceaf9fa9d50f (patch)
treea253b5eadb140d14bc99d1456e316ce1e210a6be /src/comp/front/eval.rs
parentrustc: Allow glue to be emitted even for scalar types; this is necessary to s... (diff)
downloadrust-d2bd07dcb02783063375b6c8532fceaf9fa9d50f.tar.xz
rust-d2bd07dcb02783063375b6c8532fceaf9fa9d50f.zip
Remove effect system from src.
Diffstat (limited to 'src/comp/front/eval.rs')
-rw-r--r--src/comp/front/eval.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/comp/front/eval.rs b/src/comp/front/eval.rs
index 8306bcf0..06fa9cea 100644
--- a/src/comp/front/eval.rs
+++ b/src/comp/front/eval.rs
@@ -224,7 +224,7 @@ fn val_eq(session.session sess, span sp, val av, val bv) -> bool {
fail;
}
-impure fn eval_crate_directives(ctx cx,
+fn eval_crate_directives(ctx cx,
env e,
vec[@ast.crate_directive] cdirs,
str prefix,
@@ -240,7 +240,7 @@ impure fn eval_crate_directives(ctx cx,
}
-impure fn eval_crate_directives_to_mod(ctx cx, env e,
+fn eval_crate_directives_to_mod(ctx cx, env e,
vec[@ast.crate_directive] cdirs,
str prefix) -> ast._mod {
let vec[@ast.view_item] view_items = vec();
@@ -254,7 +254,7 @@ impure fn eval_crate_directives_to_mod(ctx cx, env e,
}
-impure fn eval_crate_directive_block(ctx cx,
+fn eval_crate_directive_block(ctx cx,
env e,
&ast.block blk,
str prefix,
@@ -277,7 +277,7 @@ impure fn eval_crate_directive_block(ctx cx,
}
}
-impure fn eval_crate_directive_expr(ctx cx,
+fn eval_crate_directive_expr(ctx cx,
env e,
@ast.expr x,
str prefix,
@@ -349,7 +349,7 @@ impure fn eval_crate_directive_expr(ctx cx,
}
}
-impure fn eval_crate_directive(ctx cx,
+fn eval_crate_directive(ctx cx,
env e,
@ast.crate_directive cdir,
str prefix,