-- JunoParserEtc.mesa

-- Sets up parser and unparser tables for Juno, forks a text viewer, and exports
-- a procedure that parses and unparses the viewer's contents.
-- Last Edited by: Gnelson, January 12, 1983 10:51 pm

DIRECTORY Rope, ParseWindow;

JunoParserEtc: DEFINITIONS
 = BEGIN
 
junoA: PUBLIC ParseWindow.Handle;

Init: PROC;  -- Initializes JunoA

Parse: PROC;  -- Parses the contents of junoA

END.