9 references to GetDeclaredSymbol
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (2)
Semantics\LocalFunctionTests.cs (1)
5117var symbol = model.GetDeclaredSymbol(typeParameter);
Semantics\LockTests.cs (1)
551var parameterSymbol = model.GetDeclaredSymbol(localDecl);
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (7)
Compilation\GetSemanticInfoTests.cs (2)
6046var symbol = model.GetDeclaredSymbol(typeParameters[typeParameters.Length - 1]); 6048symbol = model.GetDeclaredSymbol(typeParameters[typeParameters.Length - 2]);
Compilation\SemanticModelAPITests.cs (2)
1009var sym1 = model1.GetDeclaredSymbol(para1); 1010var sym2 = model2.GetDeclaredSymbol(para2);
Compilation\SemanticModelGetDeclaredSymbolAPITests.cs (3)
884var symbol = model.GetDeclaredSymbol(typeDecl.TypeParameterList.Parameters[0]); 904var symbol = model.GetDeclaredSymbol(methodDecl.TypeParameterList.Parameters[0]); 969var ptsym = model.GetDeclaredSymbol(pt);