2 overrides of TryGetVariable
Microsoft.CodeAnalysis.CSharp (2)
FlowAnalysis\DefiniteAssignment.cs (1)
269protected override bool TryGetVariable(VariableIdentifier identifier, out int slot)
FlowAnalysis\NullableWalker.cs (1)
516protected override bool TryGetVariable(VariableIdentifier identifier, out int slot)
3 references to TryGetVariable
Microsoft.CodeAnalysis.CSharp (3)
FlowAnalysis\LocalDataFlowPass.cs (3)
89return TryGetVariable(new VariableIdentifier(symbol, containingSlot), out slot) ? slot : -1; 119if (!TryGetVariable(identifier, out slot)) 191if (!TryGetVariable(new VariableIdentifier(restField, containingSlot), out containingSlot))