@elyx-code/project-logic-tree 0.0.57 → 0.0.59
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 +333 -317
- package/dist/index.umd.cjs +41 -41
- package/dist/tree/state/base.d.ts +1 -0
- package/dist/tree/state/input-map/input-map.d.ts +1 -0
- package/dist/tree/state/return-declaration/return-declaration.d.ts +1 -0
- package/dist/tree/state/variable-declaration/variable-declaration.d.ts +1 -0
- package/dist/tree/state/variable-instance/variable-instance.d.ts +1 -0
- package/package.json +1 -1
|
@@ -96,6 +96,7 @@ export declare abstract class EntityWithValueClass {
|
|
|
96
96
|
export declare abstract class ValueReadingEntityClass {
|
|
97
97
|
abstract readsValue: ValueWritingEntityState | null;
|
|
98
98
|
abstract setValueWriter(writer: ValueWritingEntityState): ValueReadingEntityState;
|
|
99
|
+
abstract removeValueWriter(): ValueReadingEntityState;
|
|
99
100
|
static initReadsValue(entity: ValueReadingEntityState): ValueWritingEntityState | null;
|
|
100
101
|
}
|
|
101
102
|
export declare abstract class ValueWritingEntityClass {
|
|
@@ -64,6 +64,7 @@ export declare class InputMapState implements IInputMap, ValueReadingEntityClass
|
|
|
64
64
|
addInput(input: InputMapState): InputMapState;
|
|
65
65
|
initChildren(): InputMapState;
|
|
66
66
|
setValueWriter(valueWriter: ValueWritingEntityState): InputMapState;
|
|
67
|
+
removeValueWriter(): InputMapState;
|
|
67
68
|
subscribe(): InputMapState;
|
|
68
69
|
unsubscribe(): InputMapState;
|
|
69
70
|
sync(data: Partial<IInputMap>): InputMapState;
|
|
@@ -55,6 +55,7 @@ export declare class ReturnDeclarationState implements IReturnDeclaration, UserM
|
|
|
55
55
|
setParent(parent: ReturnStatementState | SearchState | BreakStatementState | ContinueStatementState): ReturnDeclarationState;
|
|
56
56
|
initChildren(): ReturnDeclarationState;
|
|
57
57
|
setValueWriter(valueWriter: ValueWritingEntityState): ReturnDeclarationState;
|
|
58
|
+
removeValueWriter(): ReturnDeclarationState;
|
|
58
59
|
subscribe(): ReturnDeclarationState;
|
|
59
60
|
unsubscribe(): ReturnDeclarationState;
|
|
60
61
|
sync(data: Partial<IReturnDeclaration>): ReturnDeclarationState;
|
|
@@ -80,6 +80,7 @@ export declare class VariableDeclarationState implements IVariableDeclaration, B
|
|
|
80
80
|
setParent(parent: EntityWithLogicScopeState | ProjectState): VariableDeclarationState;
|
|
81
81
|
initChildren(): VariableDeclarationState;
|
|
82
82
|
setValueWriter(valueWriter: ValueWritingEntityState): VariableDeclarationState;
|
|
83
|
+
removeValueWriter(): VariableDeclarationState;
|
|
83
84
|
subscribe(): VariableDeclarationState;
|
|
84
85
|
unsubscribe(): VariableDeclarationState;
|
|
85
86
|
sync(data: Partial<IVariableDeclaration>): VariableDeclarationState;
|
|
@@ -77,6 +77,7 @@ export declare class VariableInstanceState implements IVariableInstance, BaseSta
|
|
|
77
77
|
setParent(parent: EntityWithLogicScopeState | ProjectState): VariableInstanceState;
|
|
78
78
|
initChildren(): VariableInstanceState;
|
|
79
79
|
setValueWriter(valueWriter: ValueWritingEntityState): VariableInstanceState;
|
|
80
|
+
removeValueWriter(): VariableInstanceState;
|
|
80
81
|
removeValueReader(valueReader: ValueReadingEntityState): VariableInstanceState;
|
|
81
82
|
subscribe(): VariableInstanceState;
|
|
82
83
|
unsubscribe(): VariableInstanceState;
|
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.59",
|
|
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",
|