(* Copyright (C) 1992, Digital Equipment Corporation *) (* All rights reserved. *) (* See the file COPYRIGHT for a full description. *) (* File: ObjectRef.m3 *) (* Last Modified On Mon Mar 2 10:35:12 PST 1992 By kalsow *) (* Modified On Fri May 11 11:49:51 1990 By muller *) MODULE ObjectRef; IMPORT ObjectType, Tipe, Scope; PROCEDURE Initialize () = VAR s: Scope.T; BEGIN s := Scope.PushNew (FALSE, NIL); Scope.PopNew (); T := NIL; (* the value is used by ObjectType.New ! *) T := ObjectType.New (NIL, TRUE, NIL, s, s); Tipe.Define ("ROOT", T, TRUE); END Initialize; BEGIN END ObjectRef.