80 lines
2.9 KiB
C#
80 lines
2.9 KiB
C#
using System;
|
|
using System.Diagnostics;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using System.Runtime.CompilerServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Linq.Expressions
|
|
{
|
|
/// <summary>Emits or clears a sequence point for debug information. This allows the debugger to highlight the correct source code when debugging.</summary>
|
|
// Token: 0x02000089 RID: 137
|
|
[Token(Token = "0x2000089")]
|
|
[DebuggerTypeProxy(typeof(Expression.DebugInfoExpressionProxy))]
|
|
public class DebugInfoExpression : Expression
|
|
{
|
|
/// <summary>Gets the start line of this <see cref="T:System.Linq.Expressions.DebugInfoExpression" />.</summary>
|
|
/// <returns>The number of the start line of the code that was used to generate the wrapped expression.</returns>
|
|
// Token: 0x17000093 RID: 147
|
|
// (get) Token: 0x060003D4 RID: 980 RVA: 0x00002D78 File Offset: 0x00000F78
|
|
[Token(Token = "0x17000093")]
|
|
[ExcludeFromCodeCoverage]
|
|
public virtual int StartLine
|
|
{
|
|
[Token(Token = "0x60003D4")]
|
|
[Address(RVA = "0x85FD40", Offset = "0x85ED40", VA = "0x18085FD40", Slot = "10")]
|
|
get
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the end line of this <see cref="T:System.Linq.Expressions.DebugInfoExpression" />.</summary>
|
|
/// <returns>The number of the end line of the code that was used to generate the wrapped expression.</returns>
|
|
// Token: 0x17000094 RID: 148
|
|
// (get) Token: 0x060003D5 RID: 981 RVA: 0x00002D90 File Offset: 0x00000F90
|
|
[Token(Token = "0x17000094")]
|
|
[ExcludeFromCodeCoverage]
|
|
public virtual int EndLine
|
|
{
|
|
[Token(Token = "0x60003D5")]
|
|
[Address(RVA = "0x85FCC0", Offset = "0x85ECC0", VA = "0x18085FCC0", Slot = "11")]
|
|
get
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the <see cref="T:System.Linq.Expressions.SymbolDocumentInfo" /> that represents the source file.</summary>
|
|
/// <returns>The <see cref="T:System.Linq.Expressions.SymbolDocumentInfo" /> that represents the source file.</returns>
|
|
// Token: 0x17000095 RID: 149
|
|
// (get) Token: 0x060003D6 RID: 982 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x17000095")]
|
|
public SymbolDocumentInfo Document
|
|
{
|
|
[Token(Token = "0x60003D6")]
|
|
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")]
|
|
[CompilerGenerated]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the value to indicate if the <see cref="T:System.Linq.Expressions.DebugInfoExpression" /> is for clearing a sequence point.</summary>
|
|
/// <returns>True if the <see cref="T:System.Linq.Expressions.DebugInfoExpression" /> is for clearing a sequence point, otherwise false.</returns>
|
|
// Token: 0x17000096 RID: 150
|
|
// (get) Token: 0x060003D7 RID: 983 RVA: 0x00002DA8 File Offset: 0x00000FA8
|
|
[Token(Token = "0x17000096")]
|
|
[ExcludeFromCodeCoverage]
|
|
public virtual bool IsClear
|
|
{
|
|
[Token(Token = "0x60003D7")]
|
|
[Address(RVA = "0x85FD00", Offset = "0x85ED00", VA = "0x18085FD00", Slot = "12")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
}
|
|
}
|