SCM Repository
[smlnj] / sml / trunk / src / system / HostCompiler / cm-hook.sml |
View of /sml/trunk/src/system/HostCompiler/cm-hook.sml
Parent Directory
|
Revision Log
Revision 499 -
(download)
(annotate)
Tue Dec 7 15:44:50 1999 UTC (21 years, 4 months ago) by monnier
File size: 1112 byte(s)
Tue Dec 7 15:44:50 1999 UTC (21 years, 4 months ago) by monnier
File size: 1112 byte(s)
This commit was generated by cvs2svn to compensate for changes in r498, which included commits to RCS files with non-trunk default branches.
(* * Hook module for CM. * This module exists to break the static dependency between CM and * the compiler. This way we avoid lengthy waits for the autoloader * when touching CM at the interactive toplevel. * (CM is there and running at bootstrap time, so it can easily * install itself into the hook if this is what's desired.) * * Copyright (c) 1999 by Lucent Bell Laboratories * * author: Matthias Blume (blume@cs.princeton.edu) *) structure CmHook = struct local (* some dummy routines to make up the initial contents of the hook *) fun b's_b (b: bool) (s: string) = false fun s_b (s: string) = false (* the hook itself *) val hook = ref { stabilize = b's_b, recomp = s_b, make = s_b, autoload = s_b } in (* the routine to be called at bootstrap time... *) fun init v = hook := v (* the CM structure that will be visible at top-level *) structure CM :> MINIMAL_CM = struct fun autoload s = #autoload (!hook) s fun make s = #make (!hook) s fun recomp s = #recomp (!hook) s fun stabilize b s = #stabilize (!hook) b s end end end
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |