3 implementations of Type
Microsoft.CodeAnalysis (3)
CodeGen\LocalConstantDefinition.cs (1)
42public Cci.ITypeReference Type => CompileTimeValue.Type;
CodeGen\LocalDefinition.cs (1)
136public Cci.ITypeReference Type => _type;
CodeGen\SignatureOnlyLocalDefinition.cs (1)
76public Cci.ITypeReference Type
5 references to Type
Microsoft.CodeAnalysis (5)
Emit\EditAndContinue\DeltaMetadataWriter.cs (1)
885ITypeReference translatedType = localDef.Type;
PEWriter\MetadataVisitor.cs (1)
209this.Visit(localDefinition.Type);
PEWriter\MetadataWriter.cs (2)
3070SerializeTypeReference(encoder.Type(local.IsReference, local.IsPinned), local.Type); 3083SerializeTypeReference(typeEncoder, localConstant.Type);
PEWriter\MetadataWriter.PortablePdb.cs (1)
180var type = localConstant.Type;