You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.5 KiB
68 lines
1.5 KiB
// |
|
// Author: |
|
// Jb Evain (jbevain@gmail.com) |
|
// |
|
// Copyright (c) 2008 - 2015 Jb Evain |
|
// Copyright (c) 2008 - 2011 Novell, Inc. |
|
// |
|
// Licensed under the MIT/X11 license. |
|
// |
|
|
|
using System; |
|
|
|
namespace ILRuntime.Mono.Cecil { |
|
|
|
public class FieldReference : MemberReference { |
|
|
|
TypeReference field_type; |
|
|
|
public TypeReference FieldType { |
|
get { return field_type; } |
|
set { field_type = value; } |
|
} |
|
|
|
public override string FullName { |
|
get { return field_type.FullName + " " + MemberFullName (); } |
|
} |
|
|
|
public override bool ContainsGenericParameter { |
|
get { return field_type.ContainsGenericParameter || base.ContainsGenericParameter; } |
|
} |
|
|
|
internal FieldReference () |
|
{ |
|
this.token = new MetadataToken (TokenType.MemberRef); |
|
} |
|
|
|
public FieldReference (string name, TypeReference fieldType) |
|
: base (name) |
|
{ |
|
Mixin.CheckType (fieldType, Mixin.Argument.fieldType); |
|
|
|
this.field_type = fieldType; |
|
this.token = new MetadataToken (TokenType.MemberRef); |
|
} |
|
|
|
public FieldReference (string name, TypeReference fieldType, TypeReference declaringType) |
|
: this (name, fieldType) |
|
{ |
|
Mixin.CheckType (declaringType, Mixin.Argument.declaringType); |
|
|
|
this.DeclaringType = declaringType; |
|
} |
|
|
|
protected override IMemberDefinition ResolveDefinition () |
|
{ |
|
return this.Resolve (); |
|
} |
|
|
|
public new virtual FieldDefinition Resolve () |
|
{ |
|
var module = this.Module; |
|
if (module == null) |
|
throw new NotSupportedException (); |
|
|
|
return module.Resolve (this); |
|
} |
|
} |
|
}
|
|
|