1
Fork 0

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
This commit is contained in:
Brian Anderson 2011-07-06 14:29:50 -07:00
parent 0eac640fdd
commit b06ccb45ab
5 changed files with 58 additions and 4 deletions

View file

@ -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;