package runEnv; import env.*; public class InstanceValue extends RunValue { /* Represents an instance of a class */ private Multiple fields; private DeclList methodTable; public Multiple fields() { return fields; } public DeclList methodTable() { return methodTable; } public InstanceValue( Multiple fields, DeclList methodTable ) { this.fields = fields; this.methodTable = methodTable; } public String toString() { return "InstanceValue"; } public InstanceValue instanceValue() { return this; } }