This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Fsm = { | |
constructor: function() { | |
BehavioralFsm.apply( this, arguments ); | |
this.ensureClientMeta(); | |
}, | |
initClient: function initClient() { | |
var initialState = this.initialState; | |
if ( !initialState ) { | |
throw new Error( "You must specify an initial state for this FSM" ); | |
} |