src/Pure/ML-Systems/smlnj-compiler.ML
author ballarin
Mon, 08 Mar 2004 12:18:19 +0100
changeset 14446 0bc2519e9990
parent 12991 1bfa0670f592
child 14981 e73f8140af78
permissions -rw-r--r--
*** empty log message ***
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12874
368966ceafe5 ML-Systems/smlnj-compiler.ML compatibility tweak;
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/ML-Systems/smlnj.ML
368966ceafe5 ML-Systems/smlnj-compiler.ML compatibility tweak;
wenzelm
parents:
diff changeset
     2
    ID:         $Id$
368966ceafe5 ML-Systems/smlnj-compiler.ML compatibility tweak;
wenzelm
parents:
diff changeset
     3
    Author:     Markus Wenzel, LMU Muenchen
368966ceafe5 ML-Systems/smlnj-compiler.ML compatibility tweak;
wenzelm
parents:
diff changeset
     4
    License:    GPL (GNU GENERAL PUBLIC LICENSE)
368966ceafe5 ML-Systems/smlnj-compiler.ML compatibility tweak;
wenzelm
parents:
diff changeset
     5
368966ceafe5 ML-Systems/smlnj-compiler.ML compatibility tweak;
wenzelm
parents:
diff changeset
     6
Compatibility tweak for later versions of Standard ML of New Jersey 110.
368966ceafe5 ML-Systems/smlnj-compiler.ML compatibility tweak;
wenzelm
parents:
diff changeset
     7
*)
368966ceafe5 ML-Systems/smlnj-compiler.ML compatibility tweak;
wenzelm
parents:
diff changeset
     8
368966ceafe5 ML-Systems/smlnj-compiler.ML compatibility tweak;
wenzelm
parents:
diff changeset
     9
structure Compiler =
368966ceafe5 ML-Systems/smlnj-compiler.ML compatibility tweak;
wenzelm
parents:
diff changeset
    10
struct
12991
wenzelm
parents: 12874
diff changeset
    11
  open Compiler;
12874
368966ceafe5 ML-Systems/smlnj-compiler.ML compatibility tweak;
wenzelm
parents:
diff changeset
    12
  structure Control = Control;
368966ceafe5 ML-Systems/smlnj-compiler.ML compatibility tweak;
wenzelm
parents:
diff changeset
    13
  structure PrettyPrint = PrettyPrint;
368966ceafe5 ML-Systems/smlnj-compiler.ML compatibility tweak;
wenzelm
parents:
diff changeset
    14
  structure PPTable = CompilerPPTable;
368966ceafe5 ML-Systems/smlnj-compiler.ML compatibility tweak;
wenzelm
parents:
diff changeset
    15
  structure Interact = Backend.Interact;
368966ceafe5 ML-Systems/smlnj-compiler.ML compatibility tweak;
wenzelm
parents:
diff changeset
    16
end;