oh dear
This commit is contained in:
@@ -0,0 +1,109 @@
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
using System.Runtime.CompilerServices;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Linq.Expressions
|
||||
{
|
||||
/// <summary>Represents an expression that applies a delegate or lambda expression to a list of argument expressions.</summary>
|
||||
// Token: 0x02000090 RID: 144
|
||||
[Token(Token = "0x2000090")]
|
||||
[DebuggerTypeProxy(typeof(Expression.InvocationExpressionProxy))]
|
||||
public class InvocationExpression : Expression, IArgumentProvider
|
||||
{
|
||||
// Token: 0x0600044A RID: 1098 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600044A")]
|
||||
[Address(RVA = "0x5793D0", Offset = "0x5781D0", VA = "0x1805793D0")]
|
||||
internal InvocationExpression(Expression expression, Type returnType)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the static type of the expression that this <see cref="P:System.Linq.Expressions.InvocationExpression.Expression" /> represents.</summary>
|
||||
/// <returns>The <see cref="P:System.Linq.Expressions.InvocationExpression.Type" /> that represents the static type of the expression.</returns>
|
||||
// Token: 0x17000090 RID: 144
|
||||
// (get) Token: 0x0600044B RID: 1099 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000090")]
|
||||
public sealed override Type Type
|
||||
{
|
||||
[Token(Token = "0x600044B")]
|
||||
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20", Slot = "5")]
|
||||
[CompilerGenerated]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Returns the node type of this expression. Extension nodes should return <see cref="F:System.Linq.Expressions.ExpressionType.Extension" /> when overriding this method.</summary>
|
||||
/// <returns>The <see cref="T:System.Linq.Expressions.ExpressionType" /> of the expression.</returns>
|
||||
// Token: 0x17000091 RID: 145
|
||||
// (get) Token: 0x0600044C RID: 1100 RVA: 0x00002C88 File Offset: 0x00000E88
|
||||
[Token(Token = "0x17000091")]
|
||||
public sealed override ExpressionType NodeType
|
||||
{
|
||||
[Token(Token = "0x600044C")]
|
||||
[Address(RVA = "0x4662B0", Offset = "0x4650B0", VA = "0x1804662B0", Slot = "4")]
|
||||
get
|
||||
{
|
||||
return ExpressionType.Add;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the delegate or lambda expression to be applied.</summary>
|
||||
/// <returns>An <see cref="T:System.Linq.Expressions.Expression" /> that represents the delegate to be applied.</returns>
|
||||
// Token: 0x17000092 RID: 146
|
||||
// (get) Token: 0x0600044D RID: 1101 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000092")]
|
||||
public Expression Expression
|
||||
{
|
||||
[Token(Token = "0x600044D")]
|
||||
[Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40")]
|
||||
[CompilerGenerated]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x0600044E RID: 1102 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x600044E")]
|
||||
[Address(RVA = "0x579350", Offset = "0x578150", VA = "0x180579350", Slot = "12")]
|
||||
[ExcludeFromCodeCoverage]
|
||||
public virtual Expression GetArgument(int index)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x17000093 RID: 147
|
||||
// (get) Token: 0x0600044F RID: 1103 RVA: 0x00002CA0 File Offset: 0x00000EA0
|
||||
[Token(Token = "0x17000093")]
|
||||
[ExcludeFromCodeCoverage]
|
||||
public virtual int ArgumentCount
|
||||
{
|
||||
[Token(Token = "0x600044F")]
|
||||
[Address(RVA = "0x579450", Offset = "0x578250", VA = "0x180579450", Slot = "13")]
|
||||
get
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06000450 RID: 1104 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000450")]
|
||||
[Address(RVA = "0x579320", Offset = "0x578120", VA = "0x180579320", Slot = "9")]
|
||||
protected internal override Expression Accept(ExpressionVisitor visitor)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x06000451 RID: 1105 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6000451")]
|
||||
[Address(RVA = "0x579390", Offset = "0x578190", VA = "0x180579390", Slot = "14")]
|
||||
[ExcludeFromCodeCoverage]
|
||||
internal virtual InvocationExpression Rewrite(Expression lambda, Expression[] arguments)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user