src/Pure/ML-Systems/smlnj-compiler.ML
author paulson
Wed, 19 Jul 2006 11:55:26 +0200
changeset 20153 6ff5d35749b0
parent 14981 e73f8140af78
permissions -rw-r--r--
Fixed the bugs introduced by the last commit! Output is now *identical* to that produced by the old version, based on a-lists.
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
368966ceafe5 ML-Systems/smlnj-compiler.ML compatibility tweak;
wenzelm
parents:
diff changeset
     5
Compatibility tweak for later versions of Standard ML of New Jersey 110.
368966ceafe5 ML-Systems/smlnj-compiler.ML compatibility tweak;
wenzelm
parents:
diff changeset
     6
*)
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
structure Compiler =
368966ceafe5 ML-Systems/smlnj-compiler.ML compatibility tweak;
wenzelm
parents:
diff changeset
     9
struct
12991
wenzelm
parents: 12874
diff changeset
    10
  open Compiler;
12874
368966ceafe5 ML-Systems/smlnj-compiler.ML compatibility tweak;
wenzelm
parents:
diff changeset
    11
  structure Control = Control;
368966ceafe5 ML-Systems/smlnj-compiler.ML compatibility tweak;
wenzelm
parents:
diff changeset
    12
  structure PrettyPrint = PrettyPrint;
368966ceafe5 ML-Systems/smlnj-compiler.ML compatibility tweak;
wenzelm
parents:
diff changeset
    13
  structure PPTable = CompilerPPTable;
368966ceafe5 ML-Systems/smlnj-compiler.ML compatibility tweak;
wenzelm
parents:
diff changeset
    14
  structure Interact = Backend.Interact;
368966ceafe5 ML-Systems/smlnj-compiler.ML compatibility tweak;
wenzelm
parents:
diff changeset
    15
end;