src/Pure/ML-Systems/smlnj-compiler.ML
author wenzelm
Wed, 20 Feb 2002 00:53:53 +0100
changeset 12902 a23dc0b7566f
parent 12874 368966ceafe5
child 12991 1bfa0670f592
permissions -rw-r--r--
Symbol.bump_string;
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
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;