2 instantiations of TypeParameterChecker
Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ExpressionCompiler (2)
TypeParameterChecker.cs (2)
19new TypeParameterChecker(acceptableTypeParameters).Visit(symbol.GetPublicSymbol()); 25new BlockChecker(new TypeParameterChecker(acceptableTypeParameters)).Visit(node);
6 references to TypeParameterChecker
Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ExpressionCompiler (6)
Symbols\EEMethodSymbol.cs (3)
131TypeParameterChecker.Check(this.SubstitutedSourceMethod, _allTypeParameters); 479TypeParameterChecker.Check(this, _allTypeParameters); 698TypeParameterChecker.Check(body, _allTypeParameters);
Symbols\EENamedTypeSymbol.cs (1)
92TypeParameterChecker.Check(this.SubstitutedSourceType, _typeParameters);
TypeParameterChecker.cs (2)
43private readonly TypeParameterChecker _typeParameterChecker; 45public BlockChecker(TypeParameterChecker typeParameterChecker)