continuing to try to make sense of the old codebase.
This commit is contained in:
parent
337f53295b
commit
3b1b5d0a2e
|
@ -145,4 +145,3 @@ OnTick.prototype.configure = function(config) {
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -786,7 +786,11 @@ var rawJsworld = {};
|
||||||
|
|
||||||
// Notes: bigBang maintains a stack of activation records; it should be possible
|
// Notes: bigBang maintains a stack of activation records; it should be possible
|
||||||
// to call bigBang re-entrantly.
|
// 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();
|
// clear_running_state();
|
||||||
|
|
||||||
// Construct a fresh set of the handlers.
|
// Construct a fresh set of the handlers.
|
||||||
|
@ -822,7 +826,7 @@ var rawJsworld = {};
|
||||||
function(stop) {
|
function(stop) {
|
||||||
if (stop) {
|
if (stop) {
|
||||||
Jsworld.shutdown();
|
Jsworld.shutdown();
|
||||||
k(w);
|
succ(w);
|
||||||
/*
|
/*
|
||||||
stopWhen.receiver(world,
|
stopWhen.receiver(world,
|
||||||
function() {
|
function() {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user