@elyx-code/project-logic-tree 0.0.6209 → 0.0.6211
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/dist/index.js +14 -1
- package/dist/index.umd.cjs +2 -2
- package/dist/tree/state/project/project.d.ts +2 -1
- package/package.json +1 -1
|
@@ -17,7 +17,7 @@ import { BuiltInBaseEntityState } from '../built-in-base-entity';
|
|
|
17
17
|
import { EntityError, EntityGenerationError } from '../error';
|
|
18
18
|
import { ActionDescriptorState } from '../action-descriptor';
|
|
19
19
|
import { ValueDescriptorState } from '../value-descriptor';
|
|
20
|
-
import { IModuleInjection, UserManagedEntityState } from '../types';
|
|
20
|
+
import { IModuleInjection, TerminationState, UserManagedEntityState } from '../types';
|
|
21
21
|
import { VersionedState } from '../version';
|
|
22
22
|
|
|
23
23
|
export interface UUIDModule {
|
|
@@ -229,6 +229,7 @@ export declare class ProjectState extends VersionedState implements IProject, Us
|
|
|
229
229
|
removeGlobalEvent(event: IGlobalEvent): GlobalEventState | null;
|
|
230
230
|
removeTopLevelVariableDeclaration(variable: VariableDeclarationState): VariableDeclarationState | null;
|
|
231
231
|
getEntryPoints(): EntryPointEntityState[];
|
|
232
|
+
getTerminationStatements(): TerminationState[];
|
|
232
233
|
getFunctionDeclaration(id: EntityId): FunctionDeclarationState | null;
|
|
233
234
|
getConditions(): ConditionState[];
|
|
234
235
|
getOperations(): OperationState[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elyx-code/project-logic-tree",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6211",
|
|
4
4
|
"author": "Sergio Herrero",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"description": "An installable module which contains the type definitions and ephemeral state management for a projects' logic tree data structure",
|