diff options
| author | Brian Anderson <banderson@mozilla.com> | 2011-07-06 14:29:50 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2011-07-06 14:39:36 -0700 |
| commit | b06ccb45abb5c9ea0b55c8ff8a32831188c2403f (patch) | |
| tree | becc2cf1cb9bbb9c109a86e69993a1dabfc5aa9b /src/comp/syntax | |
| parent | 0eac640fdd56caa93d5f398a75d24e62feef4730 (diff) | |
| download | rust-b06ccb45abb5c9ea0b55c8ff8a32831188c2403f.tar.gz rust-b06ccb45abb5c9ea0b55c8ff8a32831188c2403f.zip | |
Begin adding unit testing infrastructure to the compiler
Add a --test flag and a pass for transforming the AST to generate a test harness. Issue #428
Diffstat (limited to 'src/comp/syntax')
| -rw-r--r-- | src/comp/syntax/fold.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/comp/syntax/fold.rs b/src/comp/syntax/fold.rs index 64c28ad829a..c53665cf71c 100644 --- a/src/comp/syntax/fold.rs +++ b/src/comp/syntax/fold.rs @@ -10,6 +10,7 @@ export ast_fold; export default_ast_fold; export make_fold; export dummy_out; +export noop_fold_crate; type ast_fold = @mutable a_f; |
