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,60 @@
using System;
using System.Diagnostics;
using System.Runtime.CompilerServices;
using Cpp2IlInjected;
namespace System.Linq.Expressions
{
/// <summary>Represents the default value of a type or an empty expression.</summary>
// Token: 0x0200008A RID: 138
[Token(Token = "0x200008A")]
[DebuggerTypeProxy(typeof(Expression.DefaultExpressionProxy))]
public sealed class DefaultExpression : Expression
{
// Token: 0x060003D8 RID: 984 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60003D8")]
[Address(RVA = "0x85FDB0", Offset = "0x85EDB0", VA = "0x18085FDB0")]
internal DefaultExpression(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.DefaultExpression.Type" /> that represents the static type of the expression.</returns>
// Token: 0x17000097 RID: 151
// (get) Token: 0x060003D9 RID: 985 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000097")]
public sealed override Type Type
{
[Token(Token = "0x60003D9")]
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530", Slot = "5")]
[CompilerGenerated]
get
{
return null;
}
}
/// <summary>Returns the node type of this expression. Extension nodes should return <see cref="F:System.Linq.Expressions.ExpressionType.Extension" /> when overriding this method.</summary>
/// <returns>The <see cref="T:System.Linq.Expressions.ExpressionType" /> of the expression.</returns>
// Token: 0x17000098 RID: 152
// (get) Token: 0x060003DA RID: 986 RVA: 0x00002DC0 File Offset: 0x00000FC0
[Token(Token = "0x17000098")]
public sealed override ExpressionType NodeType
{
[Token(Token = "0x60003DA")]
[Address(RVA = "0x85FE20", Offset = "0x85EE20", VA = "0x18085FE20", Slot = "4")]
get
{
return ExpressionType.Add;
}
}
// Token: 0x060003DB RID: 987 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60003DB")]
[Address(RVA = "0x85FD80", Offset = "0x85ED80", VA = "0x18085FD80", Slot = "9")]
protected internal override Expression Accept(ExpressionVisitor visitor)
{
return null;
}
}
}