Skip to content

Commit 057d15a

Browse files
author
b
committed
releae: 0.25
1 parent aac10de commit 057d15a

File tree

7 files changed

+1
-3
lines changed

7 files changed

+1
-3
lines changed
23.4 KB
Loading
21 KB
Loading

devtool/extension/img/courtesan.png

66.5 KB
Loading

devtool/extension/img/favicon.ico

1.12 KB
Binary file not shown.

devtool/extension/img/icon256.ico

258 KB
Binary file not shown.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "kingly",
33
"sideEffects": false,
4-
"version": "0.24.1",
4+
"version": "0.25.0",
55
"description": "Extended Hierarchical State Transducer library",
66
"repository": {
77
"type": "git",

src/synchronous_fsm.js

-2
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,6 @@ export function createStateMachine(fsmDef, settings) {
332332
return outputs
333333
}
334334

335-
// TODO: review the error notification
336335
function process_event(hash_states, event, event_data, extendedState) {
337336
const current_state = hash_states[INIT_STATE].current_state_name;
338337
const event_handler = hash_states[current_state][event];
@@ -406,7 +405,6 @@ export function createStateMachine(fsmDef, settings) {
406405
console.info("left state", wrap(from));
407406
}
408407

409-
// TODO: maybe add some trace debug here?
410408
function enter_next_state(to, updatedExtendedState, hash_states) {
411409
let state_to;
412410
let state_to_name;

0 commit comments

Comments
 (0)