@elyx-code/project-logic-tree 0.0.6991 → 0.0.6993

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
@@ -9873,7 +9873,7 @@ export declare enum BaseValueDescriptorIds {
9873
9873
  counterpart: UserManagedEntityState | PrimitiveEntityState | BuiltInBaseEntityState | null;
9874
9874
  rootAction: boolean;
9875
9875
  parent: ChangeSet;
9876
- constructor({ id, action, errorReason, owner, counterpart, rootAction, }: IChangeSetEventCreationPayload, changeSet: ChangeSet);
9876
+ constructor({ id, action, errorReason, owner, counterpart, rootAction }: IChangeSetEventCreationPayload, changeSet: ChangeSet);
9877
9877
  }
9878
9878
 
9879
9879
  export declare function changeSetJSONRecordToUniqueIds(changeSet: IRecordChangeSet): Set<EntityId>;
@@ -12971,7 +12971,8 @@ export declare enum BaseValueDescriptorIds {
12971
12971
  CalledBeforeDeclaration = "called-before-declaration",
12972
12972
  CalledInParallelBranchToDeclaration = "called-in-parallel-branch-to-declaration",
12973
12973
  HigherScopeThanDeclaration = "higher-scope-than-declaration",
12974
- ParentScopeRequiresReturnCurrentCatchesErrorWithNoCalls = "parent-scope-requires-return-current-catches-error-with-no-calls"
12974
+ ParentScopeRequiresReturnCurrentCatchesErrorWithNoCalls = "parent-scope-requires-return-current-catches-error-with-no-calls",
12975
+ ParentScopeRequiresReturnCurrentHasNoSuccessCalls = "parent-scope-requires-return-current-has-no-success-calls"
12975
12976
  }
12976
12977
 
12977
12978
  export declare type EntityPayloadUnion = BuiltInBaseEntityPayloadUnion | ProjectPayloadUnion | InstalledProjectPayloadUnion | DefinitionEntityPayloadUnion | FunctionDeclarationPayloadUnion | GlobalEventPayloadUnion | VariableDeclarationPayloadUnion | VariableInstancePayloadUnion | InputMapPayloadUnion | OutputMapPayloadUnion | ConditionPayloadUnion | OperationPayloadUnion | FunctionCallPayloadUnion | ArgumentDeclarationPayloadUnion | PrimitiveEntityPayloadUnion | DataTypePayloadUnion | PropertyPayloadUnion | ActionDescriptorPayloadUnion | ReturnStatementPayloadUnion | ContinueStatementPayloadUnion | BreakStatementPayloadUnion | LoopPayloadUnion | SearchPayloadUnion | ValueDescriptorPayloadUnion | InternalCallPayloadUnion | LiteralValuePayloadUnion;
@@ -29962,6 +29963,7 @@ export declare enum BaseValueDescriptorIds {
29962
29963
  ChangeInputMapDataType = "change-input-data-type",
29963
29964
  RecalculateLoop = "recalculate-loop",
29964
29965
  ChangeLoopType = "changed-loop-type",
29966
+ ChangeLoopOutputDataType = "change-loop-output-data-type",
29965
29967
  RecalculateOperation = "recalculate-operation",
29966
29968
  ChangeOperationType = "changed-operation-type",
29967
29969
  RecalculateOutputMap = "recalculate-output",
@@ -31559,6 +31561,14 @@ export declare enum BaseValueDescriptorIds {
31559
31561
 
31560
31562
  declare function validateAsync_9(self: FunctionDeclarationState, options?: YieldOptions): Promise<EntityError[]>;
31561
31563
 
31564
+ /**
31565
+ * Validates that if the current entity ends its branch, it meets the output data-type of the parent
31566
+ *
31567
+ * @param {PassThroughCallableEntityState} self
31568
+ * @returns {EntityError[]}
31569
+ */
31570
+ export declare function validateBranchTerminations(self: PassThroughCallableEntityState): EntityError[];
31571
+
31562
31572
  export declare function validateCallableEntityShouldCallReturnStatement(self: CallableEntityState): EntityError[];
31563
31573
 
31564
31574
  declare function validateCallAfterDeclaration(self: VariableInstanceState): EntityError[];