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