diff --git a/Import/TODO.md b/Import/TODO.md index 0969e545..47db14f6 100644 --- a/Import/TODO.md +++ b/Import/TODO.md @@ -108,12 +108,12 @@ namespace system ### Syntax ``` stateinput (, ...); -raise statefatal "exception"; /* stop the state machine with a fatal error */ -raise stateerror "exception"; /* redo the current stateinput statement with an error, only available in stateinput statement */ -return; /* stop the state machine normally */ +statefatal "exception"; /* stop the state machine with a fatal error */ +stateerror "exception"; /* redo the current stateinput statement with an error, only available in stateinput statement */ +return; /* stop the state machine normally */ /* wait until received expected input */ -switch(stateinput ) +switch(stateinput ) { case (, ...): { @@ -128,6 +128,15 @@ switch(stateinput