// FILE. . . . . /home/hak/hlt/src/hlt/osf/v0/sources/OsfV0Utilities.grm // EDIT BY . . . Hassan Ait-Kaci // ON MACHINE. . Hp-Dv7 // STARTED ON. . Fri Nov 02 23:01:30 2012 /** * This file defines classes used in the parser for the OSF V0 language. It is part of its Jacc grammar * specification and is included by the main grammar file OsgV0Grammar.grm . * * @version Last modified on Thu Dec 20 02:07:57 2012 by hak * @author Hassan Aït-Kaci * @copyright © by the author */ /* ************************************************************************ */ /* ****************************** UTILITIES ******************************* */ /* ************************************************************************ */ class RawPsiTerm { String tag; SortExpression sort; Stack keys; Stack subterms; RawPsiTerm (String tag, SortExpression sort, Stack keys, Stack subterms) { this.tag = tag; this.sort = sort; this.keys = keys; this.subterms = subterms; } } /* ************************************************************************ */ /* *************************** END OF UTILITIES *************************** */ /* ************************************************************************ */