package runEnv; import env.*; import node.declNode.*; public class MethodValue { /* Represents a method or constructor */ private Decl methodDecl; private InstanceValue instanceValue; public Decl methodDecl() { return methodDecl; } public InstanceValue instanceValue() { return instanceValue; } public MethodValue( Decl methodDecl, InstanceValue instanceValue ) { this.methodDecl = methodDecl; this.instanceValue = instanceValue; } public String toString() { return "MethodValue"; } }