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