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: 0x02000084 RID: 132
|
|
[Token(Token = "0x2000084")]
|
|
[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: 0x1700007B RID: 123
|
|
// (get) Token: 0x06000375 RID: 885 RVA: 0x00002B50 File Offset: 0x00000D50
|
|
[Token(Token = "0x1700007B")]
|
|
[ExcludeFromCodeCoverage]
|
|
public virtual int StartLine
|
|
{
|
|
[Token(Token = "0x6000375")]
|
|
[Address(RVA = "0x53C460", Offset = "0x53B260", VA = "0x18053C460", 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: 0x1700007C RID: 124
|
|
// (get) Token: 0x06000376 RID: 886 RVA: 0x00002B68 File Offset: 0x00000D68
|
|
[Token(Token = "0x1700007C")]
|
|
[ExcludeFromCodeCoverage]
|
|
public virtual int EndLine
|
|
{
|
|
[Token(Token = "0x6000376")]
|
|
[Address(RVA = "0x53C3E0", Offset = "0x53B1E0", VA = "0x18053C3E0", 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: 0x1700007D RID: 125
|
|
// (get) Token: 0x06000377 RID: 887 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x1700007D")]
|
|
public SymbolDocumentInfo Document
|
|
{
|
|
[Token(Token = "0x6000377")]
|
|
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
|
|
[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: 0x1700007E RID: 126
|
|
// (get) Token: 0x06000378 RID: 888 RVA: 0x00002B80 File Offset: 0x00000D80
|
|
[Token(Token = "0x1700007E")]
|
|
[ExcludeFromCodeCoverage]
|
|
public virtual bool IsClear
|
|
{
|
|
[Token(Token = "0x6000378")]
|
|
[Address(RVA = "0x53C420", Offset = "0x53B220", VA = "0x18053C420", Slot = "12")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
}
|
|
}
|