pascalabcnet/VisualPascalABCNETLinux/MonoDebugging/Debugger/Value.cs

15 lines
228 B
C#
Raw Normal View History

2023-04-18 18:53:21 +03:00
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) {
}
}
}