Files
Aug2021-Cpp2IL-Dump/System.Core/System/Linq/Expressions/GotoExpression.cs
T
2026-04-10 22:50:51 +02:00

121 lines
4.7 KiB
C#

using System;
using System.Diagnostics;
using System.Runtime.CompilerServices;
using Cpp2IlInjected;
namespace System.Linq.Expressions
{
/// <summary>Represents an unconditional jump. This includes return statements, break and continue statements, and other jumps.</summary>
// 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)
{
}
/// <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.GotoExpression.Type" /> that represents the static type of the expression.</returns>
// 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;
}
}
/// <summary>Returns the node type of this <see cref="T:System.Linq.Expressions.Expression" />.</summary>
/// <returns>The <see cref="T:System.Linq.Expressions.ExpressionType" /> that represents this expression.</returns>
// 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;
}
}
/// <summary>The value passed to the target, or null if the target is of type System.Void.</summary>
/// <returns>The <see cref="T:System.Linq.Expressions.Expression" /> object representing the value passed to the target or null.</returns>
// 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;
}
}
/// <summary>The target label where this node jumps to.</summary>
/// <returns>The <see cref="T:System.Linq.Expressions.LabelTarget" /> object representing the target label for this node.</returns>
// 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;
}
}
/// <summary>The kind of the "go to" expression. Serves information purposes only.</summary>
/// <returns>The <see cref="T:System.Linq.Expressions.GotoExpressionKind" /> object representing the kind of the "go to" expression.</returns>
// 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;
}
/// <summary>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.</summary>
/// <param name="target">The <see cref="P:System.Linq.Expressions.GotoExpression.Target" /> property of the result. </param>
/// <param name="value">The <see cref="P:System.Linq.Expressions.GotoExpression.Value" /> property of the result. </param>
/// <returns>This expression if no children are changed or an expression with the updated children.</returns>
// 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;
}
}
}