15 lines
228 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
namespace Mono.Debugger.Soft
{
public abstract class Value : Mirror {
// FIXME: Add a 'Value' field
internal Value (VirtualMachine vm, long id) : base (vm, id) {
}
}
}