Skip to content

Instantly share code, notes, and snippets.

@ionoy
Created November 24, 2013 10:25
Show Gist options
  • Save ionoy/7625614 to your computer and use it in GitHub Desktop.
Save ionoy/7625614 to your computer and use it in GitHub Desktop.
match (fun_header.body)
{
| FunBody.Parsed =>
def typer = Manager.ComponentsFactory.CreateTyper (this);
typer.BeforeStage1 = (a, b) => {
CurrentTypeBuilder.OnBeforeStage1(a, b);
}
typer.BeforeStage2 = (a, b) => {
CurrentTypeBuilder.OnBeforeStage2(a, b);
}
...
typer.RunFullTyping ();
| _ => ()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment