using System;
using System.Diagnostics;
using System.Runtime.CompilerServices;
using Cpp2IlInjected;
namespace System.Linq.Expressions
{
/// Represents an unconditional jump. This includes return statements, break and continue statements, and other jumps.
// Token: 0x0200008C RID: 140
[Token(Token = "0x200008C")]
[DebuggerTypeProxy(typeof(Expression.GotoExpressionProxy))]
public sealed class GotoExpression : Expression
{
// Token: 0x06000435 RID: 1077 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000435")]
[Address(RVA = "0x5B9E80", Offset = "0x5B8C80", VA = "0x1805B9E80")]
internal GotoExpression(GotoExpressionKind kind, LabelTarget target, Expression value, Type type)
{
}
/// Gets the static type of the expression that this represents.
/// The that represents the static type of the expression.
// Token: 0x17000084 RID: 132
// (get) Token: 0x06000436 RID: 1078 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000084")]
public sealed override Type Type
{
[Token(Token = "0x6000436")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20", Slot = "5")]
[CompilerGenerated]
get
{
return null;
}
}
/// Returns the node type of this .
/// The that represents this expression.
// Token: 0x17000085 RID: 133
// (get) Token: 0x06000437 RID: 1079 RVA: 0x00002C28 File Offset: 0x00000E28
[Token(Token = "0x17000085")]
public sealed override ExpressionType NodeType
{
[Token(Token = "0x6000437")]
[Address(RVA = "0x5607C0", Offset = "0x55F5C0", VA = "0x1805607C0", Slot = "4")]
get
{
return ExpressionType.Add;
}
}
/// The value passed to the target, or null if the target is of type System.Void.
/// The object representing the value passed to the target or null.
// Token: 0x17000086 RID: 134
// (get) Token: 0x06000438 RID: 1080 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000086")]
public Expression Value
{
[Token(Token = "0x6000438")]
[Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40")]
[CompilerGenerated]
get
{
return null;
}
}
/// The target label where this node jumps to.
/// The object representing the target label for this node.
// Token: 0x17000087 RID: 135
// (get) Token: 0x06000439 RID: 1081 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000087")]
public LabelTarget Target
{
[Token(Token = "0x6000439")]
[Address(RVA = "0x3F6400", Offset = "0x3F5200", VA = "0x1803F6400")]
[CompilerGenerated]
get
{
return null;
}
}
/// The kind of the "go to" expression. Serves information purposes only.
/// The object representing the kind of the "go to" expression.
// Token: 0x17000088 RID: 136
// (get) Token: 0x0600043A RID: 1082 RVA: 0x00002C40 File Offset: 0x00000E40
[Token(Token = "0x17000088")]
public GotoExpressionKind Kind
{
[Token(Token = "0x600043A")]
[Address(RVA = "0x42EE50", Offset = "0x42DC50", VA = "0x18042EE50")]
[CompilerGenerated]
get
{
return GotoExpressionKind.Goto;
}
}
// Token: 0x0600043B RID: 1083 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600043B")]
[Address(RVA = "0x5B9D90", Offset = "0x5B8B90", VA = "0x1805B9D90", Slot = "9")]
protected internal override Expression Accept(ExpressionVisitor visitor)
{
return null;
}
/// Creates a new expression that is like this one, but using the supplied children. If all of the children are the same, it will return this expression.
/// The property of the result.
/// The property of the result.
/// This expression if no children are changed or an expression with the updated children.
// Token: 0x0600043C RID: 1084 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600043C")]
[Address(RVA = "0x5B9DC0", Offset = "0x5B8BC0", VA = "0x1805B9DC0")]
public GotoExpression Update(LabelTarget target, Expression value)
{
return null;
}
}
}