3d63c66c1d
Former-commit-id: a2feb8469d8f23b4264831f7d8d4e51f47cd1948
14 lines
410 B
C#
14 lines
410 B
C#
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 ();
|
|
}
|
|
}
|