1 instantiation of CustomAttributeEntity
ILAssembler (1)
EntityRegistry.cs (1)
1045var entity = new CustomAttributeEntity(constructor, value);
22 references to CustomAttributeEntity
ILAssembler (22)
EntityRegistry.cs (3)
320foreach (CustomAttributeEntity customAttr in GetSeenEntities(TableIndex.CustomAttribute)) 1043public CustomAttributeEntity CreateCustomAttribute(EntityBase constructor, BlobBuilder value) 1045var entity = new CustomAttributeEntity(constructor, value);
GrammarVisitor.cs (19)
560var customAttr = VisitCustomAttrDecl(attr).Value; 675var customAttr = _entityRegistry.CreateCustomAttribute(ctor, attrValue); 1431public GrammarResult.Literal<EntityRegistry.CustomAttributeEntity?> VisitCustomAttrDecl(CILParser.CustomAttrDeclContext context) 1462public GrammarResult.Literal<EntityRegistry.CustomAttributeEntity?> VisitCustomDescrInMethodBody(CILParser.CustomDescrInMethodBodyContext context) 1529public GrammarResult.Literal<EntityRegistry.CustomAttributeEntity> VisitCustomDescr(CILParser.CustomDescrContext context) 1558public GrammarResult.Literal<EntityRegistry.CustomAttributeEntity> VisitCustomDescrWithOwner(CILParser.CustomDescrWithOwnerContext context) 1583var attr = _entityRegistry.CreateCustomAttribute(ctor, value); 1796foreach (var attr in customAttrs) 1817foreach (var attr in attrs) 2151public GrammarResult.Literal<(EntityRegistry.EntityBase? implementation, int typedefId, ImmutableArray<EntityRegistry.CustomAttributeEntity> attrs)> VisitExptypeDecls(CILParser.ExptypeDeclsContext context) 2159var attrs = ImmutableArray.CreateBuilder<EntityRegistry.CustomAttributeEntity>(); 2165if (VisitCustomAttrDecl(attr).Value is EntityRegistry.CustomAttributeEntity customAttribute) 3454public GrammarResult.Literal<(EntityRegistry.EntityBase? implementation, uint offset, ImmutableArray<EntityRegistry.CustomAttributeEntity> attributes)> VisitManifestResDecls(CILParser.ManifestResDeclsContext context) 3458var attributes = ImmutableArray.CreateBuilder<EntityRegistry.CustomAttributeEntity>(); 3763var customAttrDecl = VisitCustomAttrDecl(attr).Value; 3821var customAttrDecl = VisitCustomAttrDecl(attr).Value; 3847var customAttrDecl = VisitCustomAttrDecl(attr).Value; 5203var attr = VisitCustomDescr(customDescr).Value; 5212var attr = VisitCustomDescrWithOwner(customDescrWithOwner).Value;