Copyright (c) 2000 California Institute of Technology
All rights reserved. See the file COPYRIGHT for a full description.
$Id: YaccParse.i3.html,v 1.3 2010-04-29 17:18:53 wagner Exp $
INTERFACE YaccParse;
IMPORT Rd;
IMPORT RuleList;
IMPORT TokSpec;
IMPORT TextIntTbl;
TYPE
T <: Public;
Public = OBJECT
METHODS
init(rd: Rd.T; tok: TokSpec.T; name: TEXT): T;
fmtRules(form: TEXT): TEXT; (* see Rule.Format *)
fmtTypes(form: TEXT; tokenTypes: BOOLEAN): TEXT;
getRules(): RuleList.T;
getCodes(): TextIntTbl.T;
END;
END YaccParse.