@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.
@@ -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[];
@@ -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.6118",
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",