-- OldJunoParserEtc.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, October 11, 1983 9:39 pm

DIRECTORY Rope, OldParseWindow;

OldJunoParserEtc: DEFINITIONS
 = BEGIN OPEN ParseWindow:OldParseWindow;
 
junoA: PUBLIC ParseWindow.Handle;

Algebra: PROC[fileName:Rope.ROPE];  -- Initializes JunoA

Parse: PROC;  -- Parses the contents of junoA

END.