@turing-machine-js/machine 7.0.0-alpha.5 → 7.0.0-alpha.7
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/CHANGELOG.md +42 -0
- package/README.md +151 -61
- package/dist/classes/DebugSession.d.ts +119 -0
- package/dist/classes/State.d.ts +50 -4
- package/dist/classes/TuringMachine.d.ts +86 -71
- package/dist/index.cjs +721 -307
- package/dist/index.d.ts +3 -2
- package/dist/index.mjs +720 -308
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
export { default as Alphabet } from './classes/Alphabet';
|
|
2
2
|
export { default as Command } from './classes/Command';
|
|
3
3
|
export { default as Reference } from './classes/Reference';
|
|
4
|
-
export { default as State, DebugConfig, haltState, ifOtherSymbol } from './classes/State';
|
|
4
|
+
export { default as State, CallFrame, DebugConfig, haltState, ifOtherSymbol } from './classes/State';
|
|
5
5
|
export { default as Tape } from './classes/Tape';
|
|
6
6
|
export { default as TapeBlock } from './classes/TapeBlock';
|
|
7
7
|
export { default as TapeCommand, movements, symbolCommands } from './classes/TapeCommand';
|
|
8
|
-
export { default as TuringMachine, type MachineState } from './classes/TuringMachine';
|
|
8
|
+
export { default as TuringMachine, type MachineState, type PauseInfo, type PausedMachineState } from './classes/TuringMachine';
|
|
9
|
+
export { default as DebugSession, type DebugSessionParameter, type DebugSessionEvent, type DebugSessionListener, } from './classes/DebugSession';
|
|
9
10
|
export { type Graph, type GraphNode, type GraphTransition, type GraphCommand } from './utilities/graph';
|
|
10
11
|
export { type StateMap, type StateMapEntry } from './utilities/stateGraph';
|
|
11
12
|
export { toMermaid, fromMermaid } from './utilities/graphFormats';
|