This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,120 @@
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: 0x02000091 RID: 145
[Token(Token = "0x2000091")]
[DebuggerTypeProxy(typeof(Expression.GotoExpressionProxy))]
public sealed class GotoExpression : Expression
{
// Token: 0x060004A4 RID: 1188 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60004A4")]
[Address(RVA = "0xE9CD70", Offset = "0xE9BD70", VA = "0x180E9CD70")]
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: 0x1700009C RID: 156
// (get) Token: 0x060004A5 RID: 1189 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700009C")]
public sealed override Type Type
{
[Token(Token = "0x60004A5")]
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530", 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: 0x1700009D RID: 157
// (get) Token: 0x060004A6 RID: 1190 RVA: 0x00002E50 File Offset: 0x00001050
[Token(Token = "0x1700009D")]
public sealed override ExpressionType NodeType
{
[Token(Token = "0x60004A6")]
[Address(RVA = "0xC48CD0", Offset = "0xC47CD0", VA = "0x180C48CD0", 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: 0x1700009E RID: 158
// (get) Token: 0x060004A7 RID: 1191 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700009E")]
public Expression Value
{
[Token(Token = "0x60004A7")]
[Address(RVA = "0x4157B0", Offset = "0x4147B0", VA = "0x1804157B0")]
[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: 0x1700009F RID: 159
// (get) Token: 0x060004A8 RID: 1192 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700009F")]
public LabelTarget Target
{
[Token(Token = "0x60004A8")]
[Address(RVA = "0x4157C0", Offset = "0x4147C0", VA = "0x1804157C0")]
[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: 0x170000A0 RID: 160
// (get) Token: 0x060004A9 RID: 1193 RVA: 0x00002E68 File Offset: 0x00001068
[Token(Token = "0x170000A0")]
public GotoExpressionKind Kind
{
[Token(Token = "0x60004A9")]
[Address(RVA = "0x471180", Offset = "0x470180", VA = "0x180471180")]
[CompilerGenerated]
get
{
return GotoExpressionKind.Goto;
}
}
// Token: 0x060004AA RID: 1194 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60004AA")]
[Address(RVA = "0xE9CC80", Offset = "0xE9BC80", VA = "0x180E9CC80", 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: 0x060004AB RID: 1195 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60004AB")]
[Address(RVA = "0xE9CCB0", Offset = "0xE9BCB0", VA = "0x180E9CCB0")]
public GotoExpression Update(LabelTarget target, Expression value)
{
return null;
}
}
}