1 instantiation of TypeParser
Mono.Cecil (1)
Mono.Cecil\TypeParser.cs (1)
242 var parser = new TypeParser (fullname);
9 references to TypeParser
Mono.Cecil (5)
Mono.Cecil\AssemblyReader.cs (1)
3710 return TypeParser.ParseType (reader.module, ReadUTF8String ());
Mono.Cecil\AssemblyWriter.cs (1)
3264 WriteUTF8String (TypeParser.ToParseable (type, top_level: false));
Mono.Cecil\ModuleDefinition.cs (1)
720 ? TypeParser.ParseType (this, fullName, typeDefinitionOnly: true)
Mono.Cecil\TypeDefinitionCollection.cs (1)
86 TypeParser.SplitFullName (fullname, out @namespace, out name);
Mono.Cecil\TypeParser.cs (1)
242 var parser = new TypeParser (fullname);
Mono.Cecil.Pdb (4)
Mono.Cecil.Pdb\NativePdbReader.cs (2)
268 var type = TypeParser.ParseType (module, value); 286 var type = TypeParser.ParseType (module, alias_target_value);
Mono.Cecil.Pdb\NativePdbWriter.cs (2)
158 writer.UsingNamespace ("T" + TypeParser.ToParseable (target.type)); 164 writer.UsingNamespace ("A" + target.Alias + " T" + TypeParser.ToParseable (target.type));