Ejemplo n.º 1
0
 internal static BlockStatement DecompileLambda(this MethodBody body, ILanguage language, DecompilationContext context)
 {
     if (body != null)
     {
         dummyVar0 = body.get_Method();
     }
     return(Extensions.RunPipeline(language.CreateLambdaPipeline(context), language, body, out context));
 }
Ejemplo n.º 2
0
 internal static BlockStatement DecompileLambda(this MethodBody body, ILanguage language, DecompilationContext context)
 {
     MethodDefinition method = null;
     if (body != null)
     {
         method = body.Method;
     }
     DecompilationPipeline pipeline = language.CreateLambdaPipeline(context);
     return RunPipeline(pipeline, language, body, out context);
 }