1 instantiation of BoundLockStatement
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
4212var result = new BoundLockStatement(this.Syntax, argument, body, this.HasErrors);
19 references to BoundLockStatement
Microsoft.CodeAnalysis.CSharp (19)
FlowAnalysis\AbstractFlowPass.cs (1)
3365public override BoundNode VisitLockStatement(BoundLockStatement node)
FlowAnalysis\NullableWalker.cs (1)
12028public override BoundNode? VisitLockStatement(BoundLockStatement node)
Generated\BoundNodes.xml.Generated.cs (8)
4208public BoundLockStatement Update(BoundExpression argument, BoundStatement body) 4212var result = new BoundLockStatement(this.Syntax, argument, body, this.HasErrors); 9049return VisitLockStatement((BoundLockStatement)node, arg); 9412public virtual R VisitLockStatement(BoundLockStatement node, A arg) => this.DefaultVisit(node, arg); 9648public virtual BoundNode? VisitLockStatement(BoundLockStatement node) => this.DefaultVisit(node); 10206public override BoundNode? VisitLockStatement(BoundLockStatement node) 11419public override BoundNode? VisitLockStatement(BoundLockStatement node) 15913public override TreeDumperNode VisitLockStatement(BoundLockStatement node, object? arg) => new TreeDumperNode("lockStatement", null, new TreeDumperNode[]
Lowering\Instrumentation\CodeCoverageInstrumenter.cs (2)
389public override BoundStatement InstrumentLockTargetCapture(BoundLockStatement original, BoundStatement lockTargetCapture) 551syntaxForSpan = ((BoundLockStatement)statement).Argument.Syntax;
Lowering\Instrumentation\CompoundInstrumenter.cs (1)
183public override BoundStatement InstrumentLockTargetCapture(BoundLockStatement original, BoundStatement lockTargetCapture)
Lowering\Instrumentation\DebugInfoInjector.cs (1)
394public override BoundStatement InstrumentLockTargetCapture(BoundLockStatement original, BoundStatement lockTargetCapture)
Lowering\Instrumentation\Instrumenter.cs (1)
256public virtual BoundStatement InstrumentLockTargetCapture(BoundLockStatement original, BoundStatement lockTargetCapture)
Lowering\LocalRewriter\LocalRewriter_LockStatement.cs (2)
22public override BoundNode VisitLockStatement(BoundLockStatement node) 233private BoundStatement InstrumentLockTargetCapture(BoundLockStatement original, BoundStatement lockTargetCapture)
Operations\CSharpOperationFactory.cs (2)
199return CreateBoundLockStatementOperation((BoundLockStatement)boundNode); 2072private ILockOperation CreateBoundLockStatementOperation(BoundLockStatement boundLockStatement)