@elyx-code/project-logic-tree 0.0.6991 → 0.0.6992
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.cjs +245 -245
- package/dist/index.d.ts +10 -1
- package/dist/index.js +12412 -12230
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -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;
|
|
@@ -31559,6 +31560,14 @@ export declare enum BaseValueDescriptorIds {
|
|
|
31559
31560
|
|
|
31560
31561
|
declare function validateAsync_9(self: FunctionDeclarationState, options?: YieldOptions): Promise<EntityError[]>;
|
|
31561
31562
|
|
|
31563
|
+
/**
|
|
31564
|
+
* Validates that if the current entity ends its branch, it meets the output data-type of the parent
|
|
31565
|
+
*
|
|
31566
|
+
* @param {PassThroughCallableEntityState} self
|
|
31567
|
+
* @returns {EntityError[]}
|
|
31568
|
+
*/
|
|
31569
|
+
export declare function validateBranchTerminations(self: PassThroughCallableEntityState): EntityError[];
|
|
31570
|
+
|
|
31562
31571
|
export declare function validateCallableEntityShouldCallReturnStatement(self: CallableEntityState): EntityError[];
|
|
31563
31572
|
|
|
31564
31573
|
declare function validateCallAfterDeclaration(self: VariableInstanceState): EntityError[];
|