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