This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
@@ -0,0 +1,31 @@
using System;
using System.Collections.Generic;
using Cpp2IlInjected;
namespace System.Linq.Expressions.Interpreter
{
// Token: 0x020001A4 RID: 420
[Token(Token = "0x20001A4")]
internal abstract class LocalAccessInstruction : Instruction
{
// Token: 0x0600095E RID: 2398 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600095E")]
[Address(RVA = "0x4D83A0", Offset = "0x4D71A0", VA = "0x1804D83A0")]
protected LocalAccessInstruction(int index)
{
}
// Token: 0x0600095F RID: 2399 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600095F")]
[Address(RVA = "0x57C0D0", Offset = "0x57AED0", VA = "0x18057C0D0", Slot = "10")]
public override string ToDebugString(int instructionIndex, object cookie, Func<int, int> labelIndexer, IReadOnlyList<object> objects)
{
return null;
}
// Token: 0x040003A7 RID: 935
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40003A7")]
internal readonly int _index;
}
}