Copyright (c) 2000 California Institute of Technology
All rights reserved. See the file COPYRIGHT for a full description.
$Id: LexParse.i3.html,v 1.3 2010-04-29 17:18:49 wagner Exp $
INTERFACE LexParse;
IMPORT NFA;
IMPORT Rd;
IMPORT TokSpec;
IMPORT TextList;
TYPE
T <: Public;
Public = OBJECT
n: NFA.T;
names: TextList.T;
END;
PROCEDURE New(from: Rd.T; tok: TokSpec.T): T;
END LexParse.