CDImportsBackdoor.mesa (part of ChipNDale)
Copyright © 1984, 1986 by Xerox Corporation. All rights reserved.
Created by Christian Jacobi, September 4, 1984 3:34:34 pm PDT
Last edited by: Christian Jacobi, September 11, 1986 6:03:31 pm PDT
CDImportsBackdoor: CEDAR DEFINITIONS =
BEGIN
OneLevelIncludedCopy:
PROC [impObject:
CD.Object, design:
CD.Design]
RETURNS [
CD.Object];
--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.