-- Copyright (c) 2002-2011, Tim Sheard -- OGI School of Science & Engineering, Oregon Health & Science University -- Maseeh College of Engineering, Portland State University -- Subject to conditions of distribution and use; see LICENSE.txt for details. -- Wed Sep 7 18:45:44 CEST 2011 -- Omega Interpreter: version 1.5.1 module ParserAll (module Parser ,module StdTokenDef ,module ParseToken ,module ParseExpr ,module TokenDef) where -- Note to use this module, the modules CommentDef.hs and TokenDef.hs must exist -- usually in the same directory as the file that imports ParserAll import Parser import StdTokenDef import ParseToken import ParseExpr import TokenDef