Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

51 lines
1.1 KiB
C#

//
// Mono.ILASM.FieldRef
//
// Author(s):
// Jackson Harper (Jackson@LatitudeGeo.com)
//
// (C) 2003 Jackson Harper, All rights reserved
//
using System;
namespace Mono.ILASM {
public class FieldRef : IFieldRef {
private TypeRef owner;
private BaseTypeRef ret_type;
private string name;
private bool is_resolved;
private PEAPI.Field peapi_field;
public FieldRef (TypeRef owner, BaseTypeRef ret_type, string name)
{
this.owner = owner;
this.ret_type = ret_type;
this.name = name;
is_resolved = false;
}
public PEAPI.Field PeapiField {
get { return peapi_field; }
}
public void Resolve (CodeGen code_gen)
{
if (is_resolved)
return;
TypeDef owner_def = code_gen.TypeManager[owner.FullName];
peapi_field = owner_def.ResolveField (name, ret_type, code_gen);
is_resolved = true;
}
}
}