2 overrides of IsBlocked
ILCompiler.Compiler (2)
Compiler\MetadataBlockingPolicy.cs (1)
34public override bool IsBlocked(MetadataType type)
Compiler\NoMetadataBlockingPolicy.cs (1)
16public override bool IsBlocked(MetadataType type) => !(type is EcmaType);
4 references to IsBlocked
ILCompiler.Compiler (4)
Compiler\AnalysisBasedMetadataManager.cs (1)
286return _blockingPolicy.IsBlocked(typeDef);
Compiler\MetadataManager.cs (2)
1187if (_blockingPolicy.IsBlocked((MetadataType)typeDefinition)) 1196return _blockingPolicy.IsBlocked((MetadataType)type);
Compiler\UsageBasedMetadataManager.cs (1)
1071return _blockingPolicy.IsBlocked(typeDef);