197 references to GetDeclaredSymbol
Microsoft.CodeAnalysis.VisualBasic.CodeStyle (4)
SemanticModelExtensions.vb (2)
128Dim variableDeclaration = semanticModel.GetDeclaredSymbol(variableDeclarator.Names(0), cancellationToken) 143Dim variableDeclaration = semanticModel.GetDeclaredSymbol(variableDeclarator.Names(0), cancellationToken)
VariableDeclaratorSyntaxExtensions.vb (1)
39Dim localSymbol = TryCast(semanticModel.GetDeclaredSymbol(name), ILocalSymbol)
VisualBasicSemanticFacts.vb (1)
227Select(Function(n) semanticModel.GetDeclaredSymbol(n, cancellationToken))
Microsoft.CodeAnalysis.VisualBasic.CodeStyle.Fixes (1)
VisualBasicTypeInferenceService.TypeInferrer.vb (1)
610Dim symbol = SemanticModel.GetDeclaredSymbol(name, CancellationToken)
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (49)
CodeGen\CodeGenRefReturnTests.vb (1)
45Dim symbol = DirectCast(model.GetDeclaredSymbol(syntax), LocalSymbol)
CodeGen\CodeGenTuples.vb (46)
4697Dim xSymbol = DirectCast(model.GetDeclaredSymbol(x), LocalSymbol).Type 5622model.GetDeclaredSymbol(x).ToTestDisplayString()) 5658model.GetDeclaredSymbol(x).ToTestDisplayString()) 6400Dim resultSymbol = model.GetDeclaredSymbol(result) 11149Dim xSymbol = DirectCast(model.GetDeclaredSymbol(t), LocalSymbol).Type 11798Assert.Equal("x As System.Nullable(Of (a As System.Int16, b As System.String))", model.GetDeclaredSymbol(x).ToTestDisplayString()) 11829Assert.Equal("x As System.Nullable(Of (a As System.Int16, b As System.String))", model.GetDeclaredSymbol(x).ToTestDisplayString()) 11871Assert.Equal("x As System.Nullable(Of (a As System.Int16, b As System.String))", model.GetDeclaredSymbol(x).ToTestDisplayString()) 11947Assert.Equal("x As System.Nullable(Of (a As System.Int16, b As System.String))", model.GetDeclaredSymbol(x).ToTestDisplayString()) 11982Assert.Equal("x As System.Nullable(Of (a As System.Int16, b As System.String))", model.GetDeclaredSymbol(x).ToTestDisplayString()) 12017Assert.Equal("x As System.Nullable(Of (a As System.Int16, b As System.String))", model.GetDeclaredSymbol(x).ToTestDisplayString()) 12150Assert.Equal("x As System.Nullable(Of (a As System.Int32, b As System.String))", model.GetDeclaredSymbol(x).ToTestDisplayString()) 12185Assert.Equal("x As System.Nullable(Of (a As System.Int32, b As System.String))", model.GetDeclaredSymbol(x).ToTestDisplayString()) 12219Assert.Equal("x As System.Nullable(Of (a As System.Int32, b As System.String))", model.GetDeclaredSymbol(x).ToTestDisplayString()) 12249Assert.Equal("x As (a As System.Int32, b As System.String)", model.GetDeclaredSymbol(x).ToTestDisplayString()) 12279Assert.Equal("x As (a As System.Int32, b As System.String)", model.GetDeclaredSymbol(x).ToTestDisplayString()) 12310Assert.Equal("x As (a As System.Int32, b As System.String)", model.GetDeclaredSymbol(x).ToTestDisplayString()) 12354Assert.Equal("x As (a As System.Int16, b As System.String)", model.GetDeclaredSymbol(x).ToTestDisplayString()) 12396Assert.Equal("x As (a As System.Int16, b As System.String)", model.GetDeclaredSymbol(x).ToTestDisplayString()) 12426Assert.Equal("x As (a As System.Int16, b As System.String)", model.GetDeclaredSymbol(x).ToTestDisplayString()) 12468Assert.Equal("x As (a As System.Int16, b As System.String)", model.GetDeclaredSymbol(x).ToTestDisplayString()) 12510Assert.Equal("x As (a As System.Int16, b As System.String)", model.GetDeclaredSymbol(x).ToTestDisplayString()) 12600Assert.Equal("x As (a As System.Int16, b As System.String)", model.GetDeclaredSymbol(x).ToTestDisplayString()) 18275Assert.Equal("x1 As <anonymous type: Tuple As (a As System.Int32, b As System.Int32)>", model.GetDeclaredSymbol(x1).ToTestDisplayString()) 18278Assert.Equal("x2 As <anonymous type: Tuple As (c As System.Int32, System.Int32)>", model.GetDeclaredSymbol(x2).ToTestDisplayString()) 19527Dim x1Symbol = model.GetDeclaredSymbol(x1) 19582Assert.Equal("x1 As System.Nullable(Of (a As System.Int32, System.Int32))", model.GetDeclaredSymbol(x1).ToTestDisplayString()) 19585Assert.Equal("x2 As (a As System.Int32, System.Int32)", model.GetDeclaredSymbol(x2).ToTestDisplayString()) 19588Assert.Equal("x3 As C", model.GetDeclaredSymbol(x3).ToTestDisplayString()) 19591Assert.Equal("x4 As System.Nullable(Of (a As System.Int32, c As System.Int32))", model.GetDeclaredSymbol(x4).ToTestDisplayString()) 19594Assert.Equal("x5 As System.Nullable(Of (a As System.Int32, System.Int32))", model.GetDeclaredSymbol(x5).ToTestDisplayString()) 19597Assert.Equal("x6 As (a As System.Int32, System.Int32)", model.GetDeclaredSymbol(x6).ToTestDisplayString()) 19600Assert.Equal("x7 As (a As System.Int32, System.Int32)", model.GetDeclaredSymbol(x7).ToTestDisplayString()) 19603Assert.Equal("x8 As C", model.GetDeclaredSymbol(x8).ToTestDisplayString()) 19606Assert.Equal("x9 As (a As System.Int32, c As System.Int32)", model.GetDeclaredSymbol(x9).ToTestDisplayString()) 19609Assert.Equal("x6double As (d As System.Double, c As System.Int32)", model.GetDeclaredSymbol(x6double).ToTestDisplayString()) 19649Dim x1Symbol = model.GetDeclaredSymbol(x1) 19653Dim x2Symbol = model.GetDeclaredSymbol(x2) 19684Dim x1Symbol = model.GetDeclaredSymbol(x1) 19736Dim x1Symbol = model.GetDeclaredSymbol(x1) 19777Dim x1Symbol = model.GetDeclaredSymbol(x1) 20944Dim instance1Symbol = DirectCast(model.GetDeclaredSymbol(instance1), LocalSymbol).Type 20951Dim instance2Symbol = DirectCast(model.GetDeclaredSymbol(instance2), LocalSymbol).Type 21002Dim instance1Symbol = DirectCast(model.GetDeclaredSymbol(instance1), LocalSymbol).Type 21011Dim instance2Symbol = DirectCast(model.GetDeclaredSymbol(instance2), LocalSymbol).Type 21553Dim xSymbol = DirectCast(model.GetDeclaredSymbol(x), LocalSymbol).Type
CodeGen\CodeGenWinMdDelegates.vb (1)
90Dim nodeSymbol = DirectCast(model.GetDeclaredSymbol(node), LocalSymbol).Type
Emit\EditAndContinue\EditAndContinueTestBase.vb (1)
84Dim local = DirectCast(model.GetDeclaredSymbol(name), LocalSymbol)
Microsoft.CodeAnalysis.VisualBasic.Features (6)
CodeRefactorings\InlineTemporary\VisualBasicInlineTemporaryCodeRefactoringProvider.ReferenceRewriter.vb (1)
35_localSymbol = DirectCast(_semanticModel.GetDeclaredSymbol(_definition, cancellationToken), ILocalSymbol)
CodeRefactorings\InlineTemporary\VisualBasicInlineTemporaryCodeRefactoringProvider.vb (1)
393Dim local = DirectCast(semanticModel.GetDeclaredSymbol(modifiedIdentifier, cancellationToken), ILocalSymbol)
EditAndContinue\VisualBasicEditAndContinueAnalyzer.vb (2)
1363symbols = OneOrMany.Create(variableDeclarator.Names.SelectAsArray(Function(n) model.GetDeclaredSymbol(n, cancellationToken))) 1378Select model.GetDeclaredSymbol(name, cancellationToken)).ToImmutableArray())
EncapsulateField\VisualBasicEncapsulateFieldService.vb (1)
89Return names.Select(Function(n) semanticModel.GetDeclaredSymbol(n)).
QuickInfo\VisualBasicSemanticQuickInfoProvider.vb (1)
177Dim symbol = semanticModel.GetDeclaredSymbol(n, cancellationToken)
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests (89)
Compilation\SemanticModelAPITests.vb (15)
119Dim declSym = semanticModel.GetDeclaredSymbol(DirectCast(node2, ModifiedIdentifierSyntax)) 159Dim declSym = semanticModel.GetDeclaredSymbol(DirectCast(node2, ModifiedIdentifierSyntax)) 615Dim symbol = speculativeModel.GetDeclaredSymbol(identifierSyntax) 774Dim local = speculativeModel.GetDeclaredSymbol(varDecl) 831Dim local = speculativeModel.GetDeclaredSymbol(varDecl) 846local = speculativeModel.GetDeclaredSymbol(varDecl) 887Dim originalX = semanticModel.GetDeclaredSymbol(originalStatement.Declarators(0).Names(0)) 904Dim local = speculativeModel.GetDeclaredSymbol(varDecl) 1015Dim local = speculativeModel.GetDeclaredSymbol(speculatedStatement.Declarators.First().Names.First) 1446Dim local = speculativeModel.GetDeclaredSymbol(varDecl) 1595Dim local = speculativeModel.GetDeclaredSymbol(varDecl) 1611local = speculativeModel.GetDeclaredSymbol(varDecl) 1627local = speculativeModel.GetDeclaredSymbol(varDecl) 2948Return CType(model.GetDeclaredSymbol(decl), ILocalSymbol).Type 2989Return CType(model.GetDeclaredSymbol(decl), ILocalSymbol).Type
Compilation\SemanticModelGetDeclaredSymbolAPITests.vb (12)
46Dim symbol1 = model1.GetDeclaredSymbol(vardecl) 47Dim symbol2 = model2.GetDeclaredSymbol(vardecl) 144Dim symbol1 = model1.GetDeclaredSymbol(vardecl) 145Dim symbol2 = model2.GetDeclaredSymbol(vardecl) 175Dim symbol1 = model1.GetDeclaredSymbol(vardecl1) 178Dim symbol2 = model2.GetDeclaredSymbol(vardecl2) 209Dim symbol1 = model1.GetDeclaredSymbol(vardecl1) 212Dim symbol2 = model2.GetDeclaredSymbol(vardecl2) 1906Return semanticModel.GetDeclaredSymbol(syntax) 2677Dim symbol = model.GetDeclaredSymbol(identifier) 2859Dim sym = semanticModel.GetDeclaredSymbol(node) 2866sym = semanticModel.GetDeclaredSymbol(node)
DeclaringSyntaxNodeTests.vb (3)
235Dim localA1 = DirectCast(model.GetDeclaredSymbol(declaratorA1.Names(0)), LocalSymbol) 270Dim localA1 = DirectCast(model.GetDeclaredSymbol(declaratorA1.Names(0)), LocalSymbol) 311Dim localA1 = DirectCast(model.GetDeclaredSymbol(declaratorA1.Names(0)), LocalSymbol)
Semantics\Conversions.vb (4)
4060Dim targetType As TypeSymbol = CType(model.GetDeclaredSymbol(variableDeclarator.Names.Single), LocalSymbol).Type 4062Dim local As LocalSymbol = CType(model.GetDeclaredSymbol(variableDeclarator.Names.Single), LocalSymbol) 4146Dim targetType As TypeSymbol = CType(model.GetDeclaredSymbol(variableDeclarator.Names.Single), LocalSymbol).Type 4148Dim local As LocalSymbol = CType(model.GetDeclaredSymbol(variableDeclarator.Names.Single), LocalSymbol)
Semantics\InterpolatedStringTests.vb (2)
1224Dim vSymbol = CType(sm.GetDeclaredSymbol(root.DescendantNodes().OfType(Of ModifiedIdentifierSyntax).Single()), ILocalSymbol) 1273Dim vSymbol = CType(sm.GetDeclaredSymbol(root.DescendantNodes().OfType(Of ModifiedIdentifierSyntax).Single()), ILocalSymbol)
Semantics\Lambda_AnonymousDelegateInference.vb (8)
207Dim x1 = DirectCast(semanticModel.GetDeclaredSymbol(node1), LocalSymbol) 216Dim x2 = DirectCast(semanticModel.GetDeclaredSymbol(node2), LocalSymbol) 225Dim x3 = DirectCast(semanticModel.GetDeclaredSymbol(node3), LocalSymbol) 234Dim x4 = DirectCast(semanticModel.GetDeclaredSymbol(node4), LocalSymbol) 243Dim x5 = DirectCast(semanticModel.GetDeclaredSymbol(node5), LocalSymbol) 252Dim x6 = DirectCast(semanticModel.GetDeclaredSymbol(node6), LocalSymbol) 261Dim x7 = DirectCast(semanticModel.GetDeclaredSymbol(node7), LocalSymbol) 269Dim x8 = DirectCast(semanticModel.GetDeclaredSymbol(node8), LocalSymbol)
Semantics\LambdaSemanticInfoTests.vb (2)
537Dim e = semanticModel.GetDeclaredSymbol(node1) 628Dim symbol = DirectCast(semanticModel.GetDeclaredSymbol(node1), LocalSymbol)
Semantics\MultiDimensionalTest.vb (1)
324Dim symbol = model.GetDeclaredSymbol(node)
Semantics\QueryExpressions_SemanticModel.vb (40)
121Dim s6 = semanticModel1.GetDeclaredSymbol(node6) 129Dim s7 = DirectCast(semanticModel1.GetDeclaredSymbol(node7), RangeVariableSymbol) 176Assert.Same(s4, semanticModel1.GetDeclaredSymbol(node8)) 347Dim s6 = semanticModel1.GetDeclaredSymbol(node6) 351Dim s7 = DirectCast(semanticModel1.GetDeclaredSymbol(node7), RangeVariableSymbol) 398Assert.Same(s4, semanticModel1.GetDeclaredSymbol(node8)) 567Dim s6 = semanticModel1.GetDeclaredSymbol(node6) 571Dim s7 = DirectCast(semanticModel1.GetDeclaredSymbol(node7), RangeVariableSymbol) 618Assert.Same(s4, semanticModel1.GetDeclaredSymbol(node8)) 811Dim s6 = semanticModel1.GetDeclaredSymbol(node6) 815Dim s7 = DirectCast(semanticModel1.GetDeclaredSymbol(node7), RangeVariableSymbol) 862Assert.Same(s4, semanticModel1.GetDeclaredSymbol(node8)) 1093Assert.Same(s1, semanticModel.GetDeclaredSymbol(node2)) 1165Dim z = DirectCast(semanticModel.GetDeclaredSymbol(node10), RangeVariableSymbol) 1570Dim w1 = DirectCast(semanticModel.GetDeclaredSymbol(node4), RangeVariableSymbol) 1665Assert.Same(x1, semanticModel.GetDeclaredSymbol(DirectCast(node1.Parent, ExpressionRangeVariableSyntax).NameEquals.Identifier)) 1694Assert.Same(w1, semanticModel.GetDeclaredSymbol(DirectCast(node4.Parent, ExpressionRangeVariableSyntax).NameEquals.Identifier)) 2121Assert.Same(x1, semanticModel.GetDeclaredSymbol(DirectCast(node1.Parent, CollectionRangeVariableSyntax).Identifier)) 2143Assert.Same(w1, semanticModel.GetDeclaredSymbol(DirectCast(node4.Parent, CollectionRangeVariableSyntax).Identifier)) 2169Dim s3 = DirectCast(semanticModel.GetDeclaredSymbol(node7), RangeVariableSymbol) 2174s3 = DirectCast(semanticModel.GetDeclaredSymbol(node8), RangeVariableSymbol) 2523Dim x1 = DirectCast(semanticModel.GetDeclaredSymbol(node1), RangeVariableSymbol) 2550Dim y1 = DirectCast(semanticModel.GetDeclaredSymbol(node3), RangeVariableSymbol) 2555Dim x3 = DirectCast(semanticModel.GetDeclaredSymbol(node4), RangeVariableSymbol) 2687Assert.Same(i1, semanticModel.GetDeclaredSymbol(DirectCast(node1.Parent.Parent, ExpressionRangeVariableSyntax).NameEquals.Identifier)) 2738Assert.Same(k1, semanticModel.GetDeclaredSymbol(DirectCast(node4.Parent.Parent, ExpressionRangeVariableSyntax).NameEquals.Identifier)) 2796Assert.Same(k2, semanticModel.GetDeclaredSymbol(node8)) 2800Dim k3 = semanticModel.GetDeclaredSymbol(node9) 2891Dim x1 = DirectCast(semanticModel.GetDeclaredSymbol(node1), RangeVariableSymbol) 2918Dim x4 = DirectCast(semanticModel.GetDeclaredSymbol(node8), RangeVariableSymbol) 2929Dim y1 = DirectCast(semanticModel.GetDeclaredSymbol(node3), RangeVariableSymbol) 2934Dim x3 = DirectCast(semanticModel.GetDeclaredSymbol(node4), RangeVariableSymbol) 3297Dim s1 = DirectCast(semanticModel.GetDeclaredSymbol(node1), RangeVariableSymbol) 3306Dim s2 = DirectCast(semanticModel.GetDeclaredSymbol(node2), RangeVariableSymbol) 3312Dim x1 = DirectCast(semanticModel.GetDeclaredSymbol(node3), RangeVariableSymbol) 3342Dim x2 = DirectCast(semanticModel.GetDeclaredSymbol(node5), RangeVariableSymbol) 3501Dim s1 = DirectCast(semanticModel.GetDeclaredSymbol(node1), RangeVariableSymbol) 3510Dim s2 = DirectCast(semanticModel.GetDeclaredSymbol(node2), RangeVariableSymbol) 3516Dim x1 = DirectCast(semanticModel.GetDeclaredSymbol(node3), RangeVariableSymbol) 3546Dim x2 = DirectCast(semanticModel.GetDeclaredSymbol(node5), RangeVariableSymbol)
Semantics\UsingStatementTest.vb (1)
326Dim symbol = model.GetDeclaredSymbol(y)
Semantics\VariableTypeInference.vb (1)
706Dim varSymbol = model.GetDeclaredSymbol(vardecl)
Microsoft.CodeAnalysis.VisualBasic.Symbol.UnitTests (40)
SymbolDisplay\SymbolDisplayTests.vb (1)
5483Dim type = DirectCast(model.GetDeclaredSymbol(declarator.Names(0)), ILocalSymbol).Type
SymbolsTests\AnonymousDelegates\AnonymousDelegates_CreationAndEmit.vb (14)
302Dim x16 = DirectCast(semanticModel.GetDeclaredSymbol(node16), LocalSymbol).Type 319Dim x15 = DirectCast(semanticModel.GetDeclaredSymbol(node15), LocalSymbol).Type 331Dim x14 = DirectCast(semanticModel.GetDeclaredSymbol(node14), LocalSymbol).Type 342Dim x13 = DirectCast(semanticModel.GetDeclaredSymbol(node13), LocalSymbol).Type 354Dim x12 = DirectCast(semanticModel.GetDeclaredSymbol(node12), LocalSymbol).Type 360Dim x11 = DirectCast(semanticModel.GetDeclaredSymbol(node11), LocalSymbol).Type 366Dim x10 = DirectCast(semanticModel.GetDeclaredSymbol(node10), LocalSymbol).Type 372Dim x7 = DirectCast(semanticModel.GetDeclaredSymbol(node7), LocalSymbol).Type 381Dim x5 = DirectCast(semanticModel.GetDeclaredSymbol(node5), LocalSymbol).Type 387Dim x4 = DirectCast(DirectCast(semanticModel.GetDeclaredSymbol(node4), LocalSymbol).Type, NamedTypeSymbol) 395Dim x2 = DirectCast(DirectCast(semanticModel.GetDeclaredSymbol(node2), LocalSymbol).Type, NamedTypeSymbol) 406Dim x1 = DirectCast(DirectCast(semanticModel.GetDeclaredSymbol(node1), LocalSymbol).Type, NamedTypeSymbol) 419Dim x16_2 = DirectCast(semanticModel2.GetDeclaredSymbol(node16), LocalSymbol).Type 423Dim x1_2 = DirectCast(semanticModel2.GetDeclaredSymbol(node1), LocalSymbol).Type
SymbolsTests\AnonymousTypes\AnonymousTypesSemanticsTests.vb (19)
111DirectCast(model.GetDeclaredSymbol(declaratorQ.Names(0)), LocalSymbol), 118DirectCast(model.GetDeclaredSymbol(declaratorX.Names(0)), LocalSymbol), 125DirectCast(model.GetDeclaredSymbol(declaratorZ.Names(0)), LocalSymbol), 246Dim typeW = DirectCast(model.GetDeclaredSymbol(declaratorW.Names(0)), LocalSymbol).Type 251CheckAnonymousTypeImplicit(DirectCast(model.GetDeclaredSymbol(declaratorZF.Names(0)), LocalSymbol), 261CheckAnonymousTypeImplicit(DirectCast(model.GetDeclaredSymbol(declaratorZL.Names(0)), LocalSymbol), 263DirectCast(model.GetDeclaredSymbol(declaratorZF.Names(0)), LocalSymbol).Type, 317Dim typeT = DirectCast(model.GetDeclaredSymbol(declaratorT.Names(0)), LocalSymbol).Type 322CheckAnonymousTypeImplicit(DirectCast(model.GetDeclaredSymbol(declaratorA.Names(0)), LocalSymbol), 332CheckAnonymousTypeImplicit(DirectCast(model.GetDeclaredSymbol(declaratorB.Names(0)), LocalSymbol), 334DirectCast(model.GetDeclaredSymbol(declaratorA.Names(0)), LocalSymbol).Type, 384Dim typeT = DirectCast(model.GetDeclaredSymbol(declaratorT.Names(0)), LocalSymbol).Type 389CheckAnonymousTypeImplicit(DirectCast(model.GetDeclaredSymbol(declaratorA.Names(0)), LocalSymbol), 399Dim delegateA = DirectCast(model.GetDeclaredSymbol(declaratorA.Names(0)), LocalSymbol).Type 400CheckAnonymousTypeImplicit(DirectCast(model.GetDeclaredSymbol(declaratorB.Names(0)), LocalSymbol), 1860Dim localA3 = TryCast(model.GetDeclaredSymbol(statement3.Declarators(0).Names(0)), LocalSymbol) 1861Dim localA4 = TryCast(model.GetDeclaredSymbol(statement4.Declarators(0).Names(0)), LocalSymbol) 1910Dim localA3 = TryCast(model.GetDeclaredSymbol(statement3.Declarators(0).Names(0)), LocalSymbol) 1911Dim localA4 = TryCast(model.GetDeclaredSymbol(statement4.Declarators(0).Names(0)), LocalSymbol)
SymbolsTests\Source\EventTests.vb (4)
2427Dim xSym = model.GetDeclaredSymbol(x) 2467Dim xSym = model.GetDeclaredSymbol(x) 2507Dim xSym = model.GetDeclaredSymbol(x) 2561Dim xSym = model.GetDeclaredSymbol(x)
SymbolsTests\Source\SourceSymbolTests.vb (2)
84Dim r1Type = model.GetDeclaredSymbol(r1) 90Dim r2Type = model.GetDeclaredSymbol(r2)
Microsoft.CodeAnalysis.VisualBasic.Workspaces (6)
SemanticModelExtensions.vb (2)
128Dim variableDeclaration = semanticModel.GetDeclaredSymbol(variableDeclarator.Names(0), cancellationToken) 143Dim variableDeclaration = semanticModel.GetDeclaredSymbol(variableDeclarator.Names(0), cancellationToken)
Simplification\Reducers\VisualBasicVariableDeclaratorReducer.vb (1)
147Dim declaredSymbol = semanticModel.GetDeclaredSymbol(modifiedIdentifier)
VariableDeclaratorSyntaxExtensions.vb (1)
39Dim localSymbol = TryCast(semanticModel.GetDeclaredSymbol(name), ILocalSymbol)
VisualBasicSemanticFacts.vb (1)
227Select(Function(n) semanticModel.GetDeclaredSymbol(n, cancellationToken))
VisualBasicTypeInferenceService.TypeInferrer.vb (1)
610Dim symbol = SemanticModel.GetDeclaredSymbol(name, CancellationToken)
Microsoft.VisualStudio.LanguageServices.VisualBasic (2)
Help\VisualBasicHelpContextService.Visitor.vb (2)
593Dim symbol = _semanticModel.GetDeclaredSymbol(node, _cancellationToken) 814Dim local = TryCast(_semanticModel.GetDeclaredSymbol(bestName, _cancellationToken), ILocalSymbol)