using System;
using System.Diagnostics;
using System.Runtime.CompilerServices;
using Cpp2IlInjected;
namespace System.Linq.Expressions
{
/// Represents an expression that has a constant value.
// Token: 0x02000087 RID: 135
[Token(Token = "0x2000087")]
[DebuggerTypeProxy(typeof(Expression.ConstantExpressionProxy))]
public class ConstantExpression : Expression
{
// Token: 0x060003CD RID: 973 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60003CD")]
[Address(RVA = "0x85F8B0", Offset = "0x85E8B0", VA = "0x18085F8B0")]
internal ConstantExpression(object value)
{
}
/// Gets the static type of the expression that this represents.
/// The that represents the static type of the expression.
// Token: 0x1700008F RID: 143
// (get) Token: 0x060003CE RID: 974 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700008F")]
public override Type Type
{
[Token(Token = "0x60003CE")]
[Address(RVA = "0x85F920", Offset = "0x85E920", VA = "0x18085F920", Slot = "5")]
get
{
return null;
}
}
/// Returns the node type of this Expression. Extension nodes should return when overriding this method.
/// The of the expression.
// Token: 0x17000090 RID: 144
// (get) Token: 0x060003CF RID: 975 RVA: 0x00002D60 File Offset: 0x00000F60
[Token(Token = "0x17000090")]
public sealed override ExpressionType NodeType
{
[Token(Token = "0x60003CF")]
[Address(RVA = "0x68E020", Offset = "0x68D020", VA = "0x18068E020", Slot = "4")]
get
{
return ExpressionType.Add;
}
}
/// Gets the value of the constant expression.
/// An equal to the value of the represented expression.
// Token: 0x17000091 RID: 145
// (get) Token: 0x060003D0 RID: 976 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000091")]
public object Value
{
[Token(Token = "0x60003D0")]
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")]
[CompilerGenerated]
get
{
return null;
}
}
/// Dispatches to the specific visit method for this node type. For example, calls the .
/// The visitor to visit this node with.
/// The result of visiting this node.
// Token: 0x060003D1 RID: 977 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60003D1")]
[Address(RVA = "0x85F880", Offset = "0x85E880", VA = "0x18085F880", Slot = "9")]
protected internal override Expression Accept(ExpressionVisitor visitor)
{
return null;
}
}
}