JunoParseSyntax.mesa (was OldJunoParserEtc.mesa)
Last Edited by: Gnelson, October 11, 1983 9:39 pm
Last Edited by: Stolfi, June 13, 1984 12:21:09 pm PDT

This module defines the external Juno syntax (as in proc files). It exports the syntax tables used by the lexer, parser and unparser.

DIRECTORY

JunoParseUnparse USING [Table];

JunoParseSyntax: DEFINITIONS =

BEGIN OPEN Parse: JunoParseUnparse;

junoParseTable: READONLY Parse.Table;

END.