2 overrides of EndLine
System.Linq.Expressions (2)
System\Linq\Expressions\DebugInfoExpression.cs (2)
114
public override int
EndLine
=> _endLine;
139
public override int
EndLine
=> 0xfeefee;
4 references to EndLine
System.Linq.Expressions (4)
System\Linq\Expressions\DebugViewWriter.cs (1)
1145
Out($".DebugInfo({node.Document.FileName}: {node.StartLine}, {node.StartColumn} - {node.
EndLine
}, {node.EndColumn})");
System\Linq\Expressions\Expression.DebuggerProxy.cs (1)
119
public int EndLine => _node.
EndLine
;
System\Linq\Expressions\ExpressionStringBuilder.cs (1)
381
Out($"<DebugInfo({node.Document.FileName}: {node.StartLine}, {node.StartColumn}, {node.
EndLine
}, {node.EndColumn})>");
System\Linq\Expressions\Interpreter\LightCompiler.cs (1)
2555
EndLine = node.
EndLine
,