AST create / change / move / delete from blockly

This commit is contained in:
Andrew Sliwinski 2016-04-26 09:49:52 -04:00
parent 53779220b7
commit 981b85e78f
22 changed files with 11858 additions and 381 deletions
src/engine

View file

@ -1,29 +1,5 @@
var Timer = require('../util/timer');
/**
* Constructor
*/
function Sequencer (runtime) {
// Bi-directional binding for runtime
this.runtime = runtime;
// State
this.runningThreads = [];
this.workTime = 30;
this.timer = new Timer();
this.currentTime = 0;
function Sequencer () {
// @todo
}
Sequencer.prototype.stepAllThreads = function () {
};
Sequencer.prototype.stepThread = function (thread) {
};
Sequencer.prototype.startSubstack = function (thread) {
};
module.exports = Sequencer;