jssm 5.157.2 → 5.157.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -7
- package/dist/cdn/instance.js +38 -31012
- package/dist/cdn/viz.js +30 -30559
- package/dist/cli/fsl-export-system-prompt.cjs +1 -1
- package/dist/cli/fsl-render.cjs +1 -1
- package/dist/cli/fsl.cjs +1 -1
- package/dist/cli/lib.cjs +1 -1
- package/dist/cli/lib.mjs +1 -1
- package/dist/deno/README.md +7 -7
- package/dist/deno/jssm.js +1 -1
- package/dist/deno/jssm_compiler.d.ts +6 -0
- package/dist/jssm.es5.cjs +1 -1
- package/dist/jssm.es5.iife.js +1 -1
- package/dist/jssm.es6.mjs +1 -1
- package/dist/jssm_viz.cjs +1 -1
- package/dist/jssm_viz.iife.cjs +1 -1
- package/dist/jssm_viz.mjs +1 -1
- package/jssm.es5.d.cts +6 -0
- package/jssm.es6.d.ts +6 -0
- package/package.json +4 -3
|
@@ -336,6 +336,12 @@ declare function membership_distance(registry: JssmGroupRegistry, state: string,
|
|
|
336
336
|
* semantic error thrown will carry a `source_location` span
|
|
337
337
|
* pointing at the offending statement.
|
|
338
338
|
*
|
|
339
|
+
* @throws {JssmError} If the document declares no transitions (for example a
|
|
340
|
+
* states-first document of only `state` blocks) — a
|
|
341
|
+
* machine requires at least one transition; also for
|
|
342
|
+
* repeated property definitions, group errors, and other
|
|
343
|
+
* semantic problems noted throughout.
|
|
344
|
+
*
|
|
339
345
|
*/
|
|
340
346
|
declare function compile<StateType, mDT>(tree: JssmParseTree<StateType, mDT>): JssmGenericConfig<StateType, mDT>;
|
|
341
347
|
/*********
|