8 references to GetSpecialType
Microsoft.CodeAnalysis.CSharp (8)
Binder\Binder_Symbols.cs (1)
1699return GetSpecialType(this.Compilation, typeId, node, diagnostics);
CodeGen\EmitStatement.cs (4)
1393var int32Type = Binder.GetSpecialType(_module.Compilation, SpecialType.System_Int32, syntaxNode, _diagnostics); 1421var charType = Binder.GetSpecialType(_module.Compilation, SpecialType.System_Char, syntaxNode, _diagnostics); 1524var UInt32Type = Binder.GetSpecialType(_module.Compilation, SpecialType.System_UInt32, syntaxNode, _diagnostics); 1545var sequenceEqualsCharMethod = sequenceEqualsTMethod.Construct(Binder.GetSpecialType(_module.Compilation, SpecialType.System_Char, syntaxNode, _diagnostics));
Lowering\IteratorRewriter\IteratorRewriter.cs (1)
148Binder.GetSpecialType(F.Compilation, type, body.Syntax, bag);
Symbols\Synthesized\SynthesizedEntryPointSymbol.cs (2)
33var systemObject = Binder.GetSpecialType(compilation, SpecialType.System_Object, DummySyntax(), diagnostics); 43var systemVoid = Binder.GetSpecialType(compilation, SpecialType.System_Void, DummySyntax(), diagnostics);