using System;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.Runtime.CompilerServices;
using Cpp2IlInjected;
namespace System.Linq.Expressions
{
/// Emits or clears a sequence point for debug information. This allows the debugger to highlight the correct source code when debugging.
// Token: 0x02000084 RID: 132
[Token(Token = "0x2000084")]
[DebuggerTypeProxy(typeof(Expression.DebugInfoExpressionProxy))]
public class DebugInfoExpression : Expression
{
/// Gets the start line of this .
/// The number of the start line of the code that was used to generate the wrapped expression.
// 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;
}
}
/// Gets the end line of this .
/// The number of the end line of the code that was used to generate the wrapped expression.
// 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;
}
}
/// Gets the that represents the source file.
/// The that represents the source file.
// 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;
}
}
/// Gets the value to indicate if the is for clearing a sequence point.
/// True if the is for clearing a sequence point, otherwise false.
// 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);
}
}
}
}