6 overrides of Locals
Microsoft.CodeAnalysis.VisualBasic (6)
Binding\Binder_Query.vb (1)
2646
Friend Overrides ReadOnly Property
Locals
As ImmutableArray(Of RangeVariableSymbol)
Binding\Binder_WithBlock.vb (1)
390
Friend Overrides ReadOnly Property
Locals
As ImmutableArray(Of LocalSymbol)
Binding\BlockStatementBinders.vb (1)
38
Friend Overrides ReadOnly Property
Locals
As ImmutableArray(Of LocalSymbol)
Binding\CatchBlockBinder.vb (1)
30
Friend Overrides ReadOnly Property
Locals
As ImmutableArray(Of LocalSymbol)
Binding\StatementListBinder.vb (1)
30
Friend Overrides ReadOnly Property
Locals
As ImmutableArray(Of LocalSymbol)
Binding\UsingBlockBinder.vb (1)
30
Friend Overrides ReadOnly Property
Locals
As ImmutableArray(Of LocalSymbol)
14 references to Locals
Microsoft.CodeAnalysis.VisualBasic (7)
Binding\Binder_Statements.vb (2)
626
For Each local In binder.
Locals
1071
For Each local In blockBinder.
Locals
Binding\BlockBaseBinder.vb (4)
38
If Me._lazyLocalsMap Is Nothing AndAlso Not Me.
Locals
.IsEmpty Then
39
Interlocked.CompareExchange(Me._lazyLocalsMap, BuildMap(Me.
Locals
), Nothing)
64
Dim locals = Me.
Locals
91
Dim locals = Me.
Locals
Compilation\SemanticModel.vb (1)
2404
For Each local In blockBinder.
Locals
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests (7)
Binding\MethodBodyBindingTests.vb (7)
126
Assert.Equal(1, context.
Locals
.Length)
127
Assert.Equal("q", context.
Locals
(0).Name)
133
Assert.Equal(2, ifContext.
Locals
.Length)
134
Assert.Equal("y", ifContext.
Locals
(0).Name)
135
Assert.Equal("z", ifContext.
Locals
(1).Name)
138
Assert.Equal(1, elseContext.
Locals
.Length)
139
Assert.Equal("y", elseContext.
Locals
(0).Name)