continuing to try to make sense of the old codebase.

This commit is contained in:
Danny Yoo 2011-07-14 18:52:06 -04:00
parent 337f53295b
commit 3b1b5d0a2e
2 changed files with 6 additions and 3 deletions

View File

@ -145,4 +145,3 @@ OnTick.prototype.configure = function(config) {
}
);
};

View File

@ -786,7 +786,11 @@ var rawJsworld = {};
// Notes: bigBang maintains a stack of activation records; it should be possible
// to call bigBang re-entrantly.
function bigBang(top, init_world, handlerCreators, attribs, k) {
// top: dom
// init_world: any
// handlerCreators: (Arrayof (-> handler))
// k: any -> void
function bigBang(top, init_world, handlerCreators, attribs, succ) {
// clear_running_state();
// Construct a fresh set of the handlers.
@ -822,7 +826,7 @@ var rawJsworld = {};
function(stop) {
if (stop) {
Jsworld.shutdown();
k(w);
succ(w);
/*
stopWhen.receiver(world,
function() {