pascalabcnet/VisualPascalABCNETLinux/MonoDebugging/Debugger/InterfaceMappingMirror.cs

25 lines
606 B
C#
Raw Normal View History

2023-04-18 18:53:21 +03:00
using System;
using System.Collections.Generic;
using System.Reflection;
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;
}
}