2008/3/12, Brian J. Cardiff <[EMAIL PROTECTED]>:
> Not so important, but why the AST is shown twice?

One is before rewriting, the other is after rewriting.

See Microsoft.Scripting/Ast/Compiler.cs, from line 485:

private static void AnalyzeBlock(CodeBlock block) {
    DumpBlock(block);

    ForestRewriter.Rewrite(block);
    ClosureBinder.Bind(block);
    FlowChecker.Check(block);

    DumpBlock(block);
}

-- 
Seo Sanghyeon
_______________________________________________
Ironruby-core mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/ironruby-core

Reply via email to