(* Copyright (C) 1992, Digital Equipment Corporation *) (* All rights reserved. *) (* See the file COPYRIGHT for a full description. *) (* File: MethodExpr.i3 *) (* Last Modified On Wed Aug 21 19:19:34 1991 By kalsow *) INTERFACE MethodExpr; IMPORT Expr, Type, Value, String; PROCEDURE New (object: Type.T; name: String.T; method: Value.T; holder: Type.T): Expr.T; (* evaluates to the default for the given method *) END MethodExpr.