Merge pull request #4169 from evincarofautumn/fix-xmm-scanning-mac-x86
[mono.git] / mcs / class / System.Core / corefx / LambdaExpression.cs
1 #if FEATURE_COMPILE_TO_METHODBUILDER
2
3 using System.Reflection.Emit;
4 using System.Runtime.CompilerServices;
5
6 namespace System.Linq.Expressions
7 {
8         partial class LambdaExpression
9         {
10                 public void CompileToMethod (MethodBuilder method, DebugInfoGenerator debugInfoGenerator)
11                 {
12                         CompileToMethod (method);
13                 }
14         }
15 }
16
17 #endif