@elyx-code/project-logic-tree 0.0.6118 → 0.0.6120
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/definitions/mock/default-mock/events/project-loaded/get-bitcoin-price/get-bitcoin-price-http-call.d.ts +2 -2
- package/dist/definitions/mock/default-mock/loops/global-object-values-loop/loop.d.ts +2 -2
- package/dist/index.js +6348 -6278
- package/dist/index.umd.cjs +55 -55
- package/dist/tree/state/base.d.ts +1 -0
- package/dist/tree/state/function-declaration/function-declaration.test.d.ts +1 -0
- package/dist/tree/state/return-declaration/return-declaration.d.ts +1 -0
- package/package.json +1 -1
|
@@ -124,6 +124,7 @@ export declare abstract class ValueReadingEntityClass {
|
|
|
124
124
|
abstract setValueWriter(writer: ValueWritingEntityState): ValueReadingEntityState;
|
|
125
125
|
abstract removeValueWriter(): ValueReadingEntityState;
|
|
126
126
|
static initReadsValue(entity: ValueReadingEntityState): ValueWritingEntityState | null;
|
|
127
|
+
static hydrateReadsValue(entity: ValueReadingEntityState): ValueWritingEntityState | null;
|
|
127
128
|
}
|
|
128
129
|
export declare abstract class ValueWritingEntityClass {
|
|
129
130
|
abstract writesValues: ValueReadingEntityState[];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -57,6 +57,7 @@ export declare class ReturnDeclarationState implements IReturnDeclaration, UserM
|
|
|
57
57
|
hydrateAncestors(): IChangeSet<ReturnDeclarationState>;
|
|
58
58
|
afterAllChildrenInitialized(): IChangeSet<ReturnDeclarationState>;
|
|
59
59
|
addSelfToProject(): IChangeSet<ReturnDeclarationState>;
|
|
60
|
+
propagateChanges(): IChangeSet<ReturnDeclarationState>;
|
|
60
61
|
setParent(parent: ReturnStatementState | BreakStatementState | ContinueStatementState): ReturnDeclarationState;
|
|
61
62
|
setImplements(implementsEntity: ValueDescriptorState): ReturnDeclarationState;
|
|
62
63
|
initChildren(): ReturnDeclarationState;
|
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.6120",
|
|
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",
|