MesaParser.mesa
Copyright
Ó 1991 by Xerox Corporation. All rights reserved.
Michael Plass, September 5, 1991 11:55 pm PDT
DIRECTORY Rope,
IO;
MesaParser:
CEDAR
DEFINITIONS
~
BEGIN
Tree:
TYPE =
REF;
-- really MPTree.Link
Parse:
PUBLIC
PROC [program: Rope.
ROPE, errout:
IO.
STREAM]
RETURNS [root: Tree ¬
NIL, nTokens:
NAT ¬ 0, nErrors:
NAT ¬ 0];
END.