CDImportsExtras.mesa (part of Chipndale)
Copyright © 1984 by Xerox Corporation. All rights reserved.
by Christian Jacobi September 4, 1984 3:34:34 pm PDT
last edited Christian Jacobi September 5, 1984 6:51:31 pm PDT
DIRECTORY
CD;
CDImportsExtras: CEDAR DEFINITIONS =
BEGIN
OneLevelIncludedCopy: PROC [impObject: CD.ObPtr, design: CD.Design] RETURNS [CD.ObPtr];
--impObject: is imported and bound (from any importee) .
--design: design where impObject is imported to, and where the result lies.
--Warning: by importing the childs of impObject you might create imports of
--internal sub-objects which the designer really had not thought of exporting...
--Mostly, (but not always), usage of this procedure is a bad idea.
END.