1 instantiation of BoundFixedStatement
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
4181var result = new BoundFixedStatement(this.Syntax, locals, declarations, body, this.HasErrors);
19 references to BoundFixedStatement
Microsoft.CodeAnalysis.CSharp (19)
Binder\RefSafetyAnalysis.cs (1)
414public override BoundNode? VisitFixedStatement(BoundFixedStatement node)
BoundTree\BoundNode.cs (1)
678public override BoundNode? VisitFixedStatement(BoundFixedStatement node)
FlowAnalysis\AbstractFlowPass.cs (1)
3442public override BoundNode VisitFixedStatement(BoundFixedStatement node)
FlowAnalysis\DefiniteAssignment.cs (1)
2286public override BoundNode VisitFixedStatement(BoundFixedStatement node)
FlowAnalysis\NullableWalker.cs (1)
3595public override BoundNode? VisitFixedStatement(BoundFixedStatement node)
Generated\BoundNodes.xml.Generated.cs (9)
4177public BoundFixedStatement Update(ImmutableArray<LocalSymbol> locals, BoundMultipleLocalDeclarations declarations, BoundStatement body) 4181var result = new BoundFixedStatement(this.Syntax, locals, declarations, body, this.HasErrors); 9083return VisitFixedStatement((BoundFixedStatement)node, arg); 9447public virtual R VisitFixedStatement(BoundFixedStatement node, A arg) => this.DefaultVisit(node, arg); 9683public virtual BoundNode? VisitFixedStatement(BoundFixedStatement node) => this.DefaultVisit(node); 10238public override BoundNode? VisitFixedStatement(BoundFixedStatement node) 11526public override BoundNode? VisitFixedStatement(BoundFixedStatement node) 13628public override BoundNode? VisitFixedStatement(BoundFixedStatement node) 16083public override TreeDumperNode VisitFixedStatement(BoundFixedStatement node, object? arg) => new TreeDumperNode("fixedStatement", null, new TreeDumperNode[]
Lowering\Instrumentation\CodeCoverageInstrumenter.cs (1)
548syntaxForSpan = ((BoundFixedStatement)statement).Declarations.Syntax;
Lowering\LocalRewriter\LocalRewriter_FixedStatement.cs (2)
17public override BoundNode VisitFixedStatement(BoundFixedStatement node) 81private static bool IsInTryBlock(BoundFixedStatement boundFixed)
Operations\CSharpOperationFactory.cs (2)
189return CreateBoundFixedStatementOperation((BoundFixedStatement)boundNode); 2019private IFixedOperation CreateBoundFixedStatementOperation(BoundFixedStatement boundFixedStatement)