@elyx-code/project-logic-tree 0.0.6316 → 0.0.6318

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.d.ts CHANGED
@@ -10592,8 +10592,6 @@ export declare class LoopState extends VersionedState implements ILoop, BaseStat
10592
10592
  calledByEntry: EntryPointEntityState[];
10593
10593
  parent: EntityWithLogicScopeState | ProjectState;
10594
10594
  detachedChildren: CanvasEntityState[];
10595
- currentIterationNumberArgumentDeclaration: ArgumentDeclarationState;
10596
- currentValueArgumentDeclaration: ArgumentDeclarationState | null;
10597
10595
  errors: EntityError[];
10598
10596
  project: ProjectState;
10599
10597
  detachedDependents: Record<EntityId, {
@@ -10636,6 +10634,8 @@ export declare class LoopState extends VersionedState implements ILoop, BaseStat
10636
10634
  static fromLoopOutputDeclarationToReturnDeclarationName(outputDeclaration: ValueDescriptorState): string;
10637
10635
  static fromLoopOutputDeclarationToBodyArgumentDeclarationName(outputDeclaration: ValueDescriptorState): string;
10638
10636
  static fromBodyArgumentDeclarationToLoopOutputDeclarationName(argumentDeclaration: ArgumentDeclarationState): string;
10637
+ get currentIterationNumberArgumentDeclaration(): ArgumentDeclarationState;
10638
+ get currentValueArgumentDeclaration(): ArgumentDeclarationState | null;
10639
10639
  get continueStatements(): ContinueStatementState[];
10640
10640
  get breakStatements(): BreakStatementState[];
10641
10641
  validateGeneratedUpdate(data: Partial<ILoopGenerationTarget>): {