15 lines
228 B
C#
15 lines
228 B
C#
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) {
|
|
}
|
|
}
|
|
}
|
|
|