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
15 references to Type
Microsoft.CodeAnalysis (5)
Emit\EditAndContinue\DeltaMetadataWriter.cs (1)
869ITypeReference translatedType = localDef.Type;
PEWriter\MetadataVisitor.cs (1)
208this.Visit(localDefinition.Type);
PEWriter\MetadataWriter.cs (2)
3024SerializeTypeReference(encoder.Type(local.IsReference, local.IsPinned), local.Type); 3037SerializeTypeReference(typeEncoder, localConstant.Type);
PEWriter\MetadataWriter.PortablePdb.cs (1)
180var type = localConstant.Type;
Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ExpressionCompiler.UnitTests (3)
ExpressionCompilerTests.cs (3)
1120Assert.Equal("C", local.Type.ToString()); 2095var localType = (NamedTypeSymbol)local.Type.GetInternalSymbol(); 2164var localType = (TypeSymbol)local.Type.GetInternalSymbol();
Microsoft.CodeAnalysis.Test.Utilities (3)
Compilation\CompilationDifference.cs (1)
113return new ILVisualizer.LocalInfo(local.Name, local.Type, local.IsPinned, local.IsReference);
Metadata\ILBuilderVisualizer.cs (2)
147mapLocal = local => new LocalInfo(local.Name, local.Type, local.IsPinned, local.IsReference); 184mapLocal = local => new LocalInfo(local.Name, local.Type, local.IsPinned, local.IsReference);
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (1)
Emit\EditAndContinue\EditAndContinueTestBase.vb (1)
53Return New ILVisualizer.LocalInfo(local.Name, local.Type, local.IsPinned, local.IsReference)
Microsoft.CodeAnalysis.VisualBasic.ExpressionEvaluator.ExpressionCompiler.UnitTests (3)
ExpressionCompilerTests.vb (3)
1224Assert.Equal("C", local.Type.ToString()) 2028Dim localType = DirectCast(local.Type.GetInternalSymbol(), NamedTypeSymbol) 2082Assert.Equal(method, DirectCast(locals.Single().Type.GetInternalSymbol(), TypeSymbol).ContainingSymbol)