Undo stupid mistake

This commit is contained in:
Tony Garnock-Jones 2019-06-14 13:15:36 +01:00
parent 9105637143
commit d7169b2687
1 changed files with 15 additions and 0 deletions

View File

@ -42,6 +42,21 @@ const PRIORITY = Object.freeze({
_count: 6
});
function Dataspace(bootProc) {
this.nextId = 0;
this.index = new Skeleton.Index();
this.dataflow = new Dataflow.Graph();
this.runnable = Immutable.List();
this.pendingActions = Immutable.List([
new ActionGroup(null, Immutable.List([new Spawn(null, bootProc, Immutable.Set())]))]);
this.activatedModules = Immutable.Set();
this.actors = Immutable.Map();
}
// Parameters
Dataspace._currentFacet = null;
Dataspace._inScript = true;
Dataspace.BootSteps = Symbol.for('SyndicateBootSteps');
Dataspace.currentFacet = function () {