-- KipperCodeGen.mesa: December 1, 1985 5:04:27 pm PST
-- Sturgis, December 31, 1985 3:52:23 pm PST
DIRECTORY
IO USING[STREAM],
KipperMain1Def USING[TypeContextNode];
KipperCodeGen: CEDAR DEFINITIONS =
BEGIN OPEN KipperMain1Def;
PrintTypeNodeContext: PROC[context: TypeContextNode, on: IO.STREAM];
BuildFilesFromContext: PROC[context: TypeContextNode, ReportStream: IO.STREAM];
END..