// // Mono.ILASM.TypeRef // // Author(s): // Jackson Harper (Jackson@LatitudeGeo.com) // // (C) 2003 Jackson Harper, All rights reserved // using System; using System.Collections; namespace Mono.ILASM { /// /// Reference to a type in the module being compiled. /// public class TypeRef : ModifiableType, IClassRef { private Location location; private string full_name; private string sig_mod; private PEAPI.Type type; private bool is_valuetype; private bool is_resolved; public static readonly TypeRef Ellipsis = new TypeRef ("ELLIPSIS", false, null); public static readonly TypeRef Any = new TypeRef ("any", false, null); public TypeRef (string full_name, bool is_valuetype, Location location) { this.full_name = full_name; this.location = location; this.is_valuetype = is_valuetype; sig_mod = String.Empty; is_resolved = false; } public string FullName { get { return full_name + sig_mod; } } public override string SigMod { get { return sig_mod; } set { sig_mod = value; } } public PEAPI.Type PeapiType { get { return type; } } public PEAPI.Class PeapiClass { get { return type as PEAPI.Class; } } public bool IsResolved { get { return is_resolved; } } public void MakeValueClass () { is_valuetype = true; } public IMethodRef GetMethodRef (ITypeRef ret_type, PEAPI.CallConv call_conv, string name, ITypeRef[] param, int gen_param_count) { return new MethodRef (this, call_conv, ret_type, name, param, gen_param_count); } public IFieldRef GetFieldRef (ITypeRef ret_type, string name) { return new FieldRef (this, ret_type, name); } public void Resolve (CodeGen code_gen) { if (is_resolved) return; PEAPI.Type base_type; base_type = code_gen.TypeManager.GetPeapiType (full_name); if (base_type == null) { code_gen.Report.Error ("Reference to undefined class '" + FullName + "'"); return; } type = Modify (code_gen, base_type); is_resolved = true; } public IClassRef AsClassRef (CodeGen code_gen) { return this; } public override string ToString () { return FullName; } } }