61 lines
2.2 KiB
C#
61 lines
2.2 KiB
C#
using System;
|
|
using System.Diagnostics;
|
|
using System.Runtime.CompilerServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Linq.Expressions
|
|
{
|
|
/// <summary>Represents the default value of a type or an empty expression.</summary>
|
|
// Token: 0x0200008A RID: 138
|
|
[Token(Token = "0x200008A")]
|
|
[DebuggerTypeProxy(typeof(Expression.DefaultExpressionProxy))]
|
|
public sealed class DefaultExpression : Expression
|
|
{
|
|
// Token: 0x060003D8 RID: 984 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x60003D8")]
|
|
[Address(RVA = "0x85FDB0", Offset = "0x85EDB0", VA = "0x18085FDB0")]
|
|
internal DefaultExpression(Type type)
|
|
{
|
|
}
|
|
|
|
/// <summary>Gets the static type of the expression that this <see cref="T:System.Linq.Expressions.Expression" /> represents.</summary>
|
|
/// <returns>The <see cref="P:System.Linq.Expressions.DefaultExpression.Type" /> that represents the static type of the expression.</returns>
|
|
// Token: 0x17000097 RID: 151
|
|
// (get) Token: 0x060003D9 RID: 985 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x17000097")]
|
|
public sealed override Type Type
|
|
{
|
|
[Token(Token = "0x60003D9")]
|
|
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530", 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: 0x17000098 RID: 152
|
|
// (get) Token: 0x060003DA RID: 986 RVA: 0x00002DC0 File Offset: 0x00000FC0
|
|
[Token(Token = "0x17000098")]
|
|
public sealed override ExpressionType NodeType
|
|
{
|
|
[Token(Token = "0x60003DA")]
|
|
[Address(RVA = "0x85FE20", Offset = "0x85EE20", VA = "0x18085FE20", Slot = "4")]
|
|
get
|
|
{
|
|
return ExpressionType.Add;
|
|
}
|
|
}
|
|
|
|
// Token: 0x060003DB RID: 987 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60003DB")]
|
|
[Address(RVA = "0x85FD80", Offset = "0x85ED80", VA = "0x18085FD80", Slot = "9")]
|
|
protected internal override Expression Accept(ExpressionVisitor visitor)
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|