GetTree.mesa
Copyright © 1985 by Xerox Corporation. All rights reserved.
written by Bill Paxton, May 1981
Bill Paxton, 17-Jan-82 16:07:27
Russ Atkinson, July 26, 1983 5:20 pm
Doug Wyatt, March 2, 1985 4:48:11 pm PST
DIRECTORY
Rope USING [ROPE],
TextNode USING [RefTextNode];
GetTree: CEDAR DEFINITIONS
= BEGIN
RefTextNode: TYPE = TextNode.RefTextNode;
ReadIndent: PROC [fileName: Rope.ROPE, tabIndent: NAT ← 4] RETURNS [RefTextNode];
END.