17 lines
367 B
C#
17 lines
367 B
C#
using System.Collections.Generic;
|
|
using Microsoft.CodeAnalysis.Emit;
|
|
using Microsoft.CodeAnalysis.Symbols;
|
|
|
|
namespace Microsoft.Cci;
|
|
|
|
internal interface IReference
|
|
{
|
|
IEnumerable<ICustomAttribute> GetAttributes(EmitContext context);
|
|
|
|
void Dispatch(MetadataVisitor visitor);
|
|
|
|
IDefinition? AsDefinition(EmitContext context);
|
|
|
|
ISymbolInternal? GetInternalSymbol();
|
|
}
|