using System;
using System.Diagnostics;
using System.Runtime.CompilerServices;
using Cpp2IlInjected;
namespace System.Linq.Expressions
{
/// Represents an expression that has a constant value.
// Token: 0x02000082 RID: 130
[Token(Token = "0x2000082")]
[DebuggerTypeProxy(typeof(Expression.ConstantExpressionProxy))]
public class ConstantExpression : Expression
{
// Token: 0x0600036E RID: 878 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600036E")]
[Address(RVA = "0x53C0D0", Offset = "0x53AED0", VA = "0x18053C0D0")]
internal ConstantExpression(object value)
{
}
/// Gets the static type of the expression that this represents.
/// The that represents the static type of the expression.
// Token: 0x17000077 RID: 119
// (get) Token: 0x0600036F RID: 879 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000077")]
public override Type Type
{
[Token(Token = "0x600036F")]
[Address(RVA = "0x53C140", Offset = "0x53AF40", VA = "0x18053C140", 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: 0x17000078 RID: 120
// (get) Token: 0x06000370 RID: 880 RVA: 0x00002B38 File Offset: 0x00000D38
[Token(Token = "0x17000078")]
public sealed override ExpressionType NodeType
{
[Token(Token = "0x6000370")]
[Address(RVA = "0x46AA40", Offset = "0x469840", VA = "0x18046AA40", Slot = "4")]
get
{
return ExpressionType.Add;
}
}
/// Gets the value of the constant expression.
/// An equal to the value of the represented expression.
// Token: 0x17000079 RID: 121
// (get) Token: 0x06000371 RID: 881 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000079")]
public object Value
{
[Token(Token = "0x6000371")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
[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: 0x06000372 RID: 882 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000372")]
[Address(RVA = "0x53C0A0", Offset = "0x53AEA0", VA = "0x18053C0A0", Slot = "9")]
protected internal override Expression Accept(ExpressionVisitor visitor)
{
return null;
}
}
}