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
8 references to Type
Microsoft.CodeAnalysis (5)
Emit\EditAndContinue\DeltaMetadataWriter.cs (1)
926ITypeReference translatedType = localDef.Type;
PEWriter\MetadataVisitor.cs (1)
209this.Visit(localDefinition.Type);
PEWriter\MetadataWriter.cs (2)
3086SerializeTypeReference(encoder.Type(local.IsReference, local.IsPinned), local.Type); 3099SerializeTypeReference(typeEncoder, localConstant.Type);
PEWriter\MetadataWriter.PortablePdb.cs (1)
180var type = localConstant.Type;
Microsoft.CodeAnalysis.Test.Utilities (3)
Compilation\CompilationDifference.cs (1)
116return new ILVisualizer.LocalInfo(local.Name, local.Type, local.IsPinned, local.IsReference);
Metadata\ILBuilderVisualizer.cs (2)
150mapLocal = local => new LocalInfo(local.Name, local.Type, local.IsPinned, local.IsReference); 189mapLocal = local => new LocalInfo(local.Name, local.Type, local.IsPinned, local.IsReference);