4 instantiations of BoundSequencePointWithSpan
Microsoft.CodeAnalysis.CSharp (4)
BoundTree\BoundSequencePoint.cs (1)
16return new BoundSequencePointWithSpan(syntax!, statement, part.Value, hasErrors);
Generated\BoundNodes.xml.Generated.cs (1)
3190var result = new BoundSequencePointWithSpan(this.Syntax, statementOpt, span, this.HasErrors);
Lowering\Instrumentation\DebugInfoInjector.cs (1)
331return new BoundSequencePointWithSpan(original.Syntax,
Lowering\SyntheticBoundNodeFactory.cs (1)
1199return new BoundSequencePointWithSpan(syntax, statement, span);
18 references to BoundSequencePointWithSpan
Microsoft.CodeAnalysis.CSharp (18)
BoundTree\BoundNode_Source.cs (1)
132case BoundSequencePointWithSpan seqPoint:
BoundTree\BoundTreeVisitors.cs (1)
70return VisitSequencePointWithSpan(node as BoundSequencePointWithSpan, arg);
CodeGen\CodeGenerator.cs (1)
396private void EmitSequencePointStatement(BoundSequencePointWithSpan node)
CodeGen\EmitStatement.cs (1)
44this.EmitSequencePointStatement((BoundSequencePointWithSpan)statement);
FlowAnalysis\AbstractFlowPass.cs (1)
3182public override BoundNode VisitSequencePointWithSpan(BoundSequencePointWithSpan node)
Generated\BoundNodes.xml.Generated.cs (8)
3186public BoundSequencePointWithSpan Update(BoundStatement? statementOpt, TextSpan span) 3190var result = new BoundSequencePointWithSpan(this.Syntax, statementOpt, span, this.HasErrors); 8992return VisitSequencePointWithSpan((BoundSequencePointWithSpan)node, arg); 9384public virtual R VisitSequencePointWithSpan(BoundSequencePointWithSpan node, A arg) => this.DefaultVisit(node, arg); 9620public virtual BoundNode? VisitSequencePointWithSpan(BoundSequencePointWithSpan node) => this.DefaultVisit(node); 10066public override BoundNode? VisitSequencePointWithSpan(BoundSequencePointWithSpan node) 11276public override BoundNode? VisitSequencePointWithSpan(BoundSequencePointWithSpan node) 15682public override TreeDumperNode VisitSequencePointWithSpan(BoundSequencePointWithSpan node, object? arg) => new TreeDumperNode("sequencePointWithSpan", null, new TreeDumperNode[]
Lowering\ClosureConversion\ClosureConversion.Analysis.cs (1)
115node = ((BoundSequencePointWithSpan)node).StatementOpt;
Lowering\ClosureConversion\ExpressionLambdaRewriter.cs (1)
154stmt = ((BoundSequencePointWithSpan)stmt).StatementOpt;
Lowering\Instrumentation\DebugInfoInjector.cs (1)
297var foreachKeywordSequencePoint = new BoundSequencePointWithSpan(forEachSyntax, null, span);
Lowering\LocalRewriter\LocalRewriter_TryStatement.cs (2)
70var sequence = (BoundSequencePointWithSpan)statement;