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