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

27 lines
655 B
C#

using System;
using System.Collections.Generic;
using System.Reflection;
using C = Mono.Cecil;
using Mono.Cecil.Metadata;
namespace Mono.Debugger.Soft
{
public class InterfaceMappingMirror : Mirror {
internal InterfaceMappingMirror (VirtualMachine vm, TypeMirror target, TypeMirror iface, MethodMirror[] iface_methods, MethodMirror[] target_methods) : base (vm, 0) {
TargetType = target;
InterfaceType = iface;
InterfaceMethods = iface_methods;
TargetMethods = target_methods;
}
public MethodMirror[] InterfaceMethods;
public TypeMirror InterfaceType;
public MethodMirror[] TargetMethods;
public TypeMirror TargetType;
}
}