Imported Upstream version 6.0.0.259

Former-commit-id: a2feb8469d8f23b4264831f7d8d4e51f47cd1948
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2019-05-25 08:50:17 +00:00
parent 03112dc19c
commit 3d63c66c1d
53 changed files with 126 additions and 44 deletions

View File

@ -0,0 +1,13 @@
using System;
using System.Reflection.Emit;
using System.Runtime.CompilerServices;
namespace System.Linq.Expressions {
public partial class LambdaExpression {
public void CompileToMethod (MethodBuilder method) => throw new PlatformNotSupportedException ();
public void CompileToMethod (MethodBuilder method, DebugInfoGenerator debugInfoGenerator) => throw new PlatformNotSupportedException ();
}
}