src/Pure/Syntax/ROOT.ML
author wenzelm
Mon, 16 Nov 1998 11:32:28 +0100
changeset 5893 c755dfd02509
parent 5683 e62518aacc5b
child 6116 8ba2f25610f7
permissions -rw-r--r--
added oo, ooo (*concatenation: 2 and 3 args*);

(*  Title:      Pure/Syntax/ROOT.ML
    ID:         $Id$
    Author:     Tobias Nipkow and Markus Wenzel, TU Muenchen

This file builds the syntax module.
*)

(*generic modules*)
use "scan.ML";
use "source.ML";
use "symbol.ML";
use "pretty.ML";

(*actual syntax module*)
use "lexicon.ML";
use "token_trans.ML";
use "ast.ML";
use "syn_ext.ML";
use "parser.ML";
use "type_ext.ML";
use "syn_trans.ML";
use "mixfix.ML";
use "printer.ML";
use "syntax.ML";

(*hiding private stuff*)
structure Lexicon = Hidden;
structure TokenTrans = Hidden;
structure Ast = Hidden;
structure SynExt = Hidden;
structure Parser = Hidden;
structure TypeExt = Hidden;
structure SynTrans = Hidden;
structure Mixfix = Hidden;
structure Printer = Hidden;