@elyx-code/project-logic-tree 0.0.6985 → 0.0.6987
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 +123 -123
- package/dist/index.d.ts +19 -2
- package/dist/index.js +3676 -3570
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -14624,10 +14624,12 @@ export declare enum BaseValueDescriptorIds {
|
|
|
14624
14624
|
|
|
14625
14625
|
export declare function flattenCalls(entities: CallableEntityState[], options?: {
|
|
14626
14626
|
sorting?: 'local-y-axis';
|
|
14627
|
+
excludeLoopBodies?: boolean;
|
|
14627
14628
|
}): CallableEntityState[];
|
|
14628
14629
|
|
|
14629
14630
|
export declare function flattenCallsAsync(entities: CallableEntityState[], options?: YieldOptions & {
|
|
14630
14631
|
sorting?: 'local-y-axis';
|
|
14632
|
+
excludeLoopBodies?: boolean;
|
|
14631
14633
|
}): Promise<CallableEntityState[]>;
|
|
14632
14634
|
|
|
14633
14635
|
export declare function flattenCanvasAncestorsUntil(entity: CanvasEntityState, until: CanvasEntityState): {
|
|
@@ -14732,15 +14734,19 @@ export declare enum BaseValueDescriptorIds {
|
|
|
14732
14734
|
*/
|
|
14733
14735
|
export declare function flattenElementCalls(element: CallerEntityState, options?: {
|
|
14734
14736
|
sorting?: 'local-y-axis';
|
|
14737
|
+
excludeLoopBodies?: boolean;
|
|
14735
14738
|
}): CallableEntityState[];
|
|
14736
14739
|
|
|
14737
14740
|
export declare function flattenElementCallsAsync(element: CallerEntityState, options?: YieldOptions & {
|
|
14738
14741
|
sorting?: 'local-y-axis';
|
|
14742
|
+
excludeLoopBodies?: boolean;
|
|
14739
14743
|
}): Promise<CallableEntityState[]>;
|
|
14740
14744
|
|
|
14741
14745
|
export declare function flattenElementCallsOnTheSameScope(element: CallerEntityState): CallableEntityState[];
|
|
14742
14746
|
|
|
14743
|
-
export declare function flattenElementCallsWithCallType(element: CallerEntityState
|
|
14747
|
+
export declare function flattenElementCallsWithCallType(element: CallerEntityState, options?: {
|
|
14748
|
+
excludeLoopBodies?: boolean;
|
|
14749
|
+
}): {
|
|
14744
14750
|
callee: CallableEntityState;
|
|
14745
14751
|
callType: 'success' | 'error' | 'entry' | 'loop-body';
|
|
14746
14752
|
}[];
|
|
@@ -16011,7 +16017,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
16011
16017
|
* often we need to check if the entity is called by parallel callers
|
|
16012
16018
|
* Meaning that it either has to be compiled after all of them,
|
|
16013
16019
|
* Or in the case of a condition caller, it cannot be compiled inside the block of either caller conditions
|
|
16014
|
-
|
|
16020
|
+
*
|
|
16015
16021
|
* @param {CallableEntityState} entity The entity to check for parallel callers
|
|
16016
16022
|
* @returns {{ ancestor: PassThroughCallableEntityState, callType: ('success'|'error') }[]} An array of independent parallel conditions direct calls
|
|
16017
16023
|
*/
|
|
@@ -28291,6 +28297,17 @@ export declare enum BaseValueDescriptorIds {
|
|
|
28291
28297
|
callType: 'success' | 'error';
|
|
28292
28298
|
}[];
|
|
28293
28299
|
|
|
28300
|
+
/**
|
|
28301
|
+
* Recursively resolves all entities that can throw errors and don't catch them, or call logic upon error
|
|
28302
|
+
* from the entry point, and without own ancestors or conditions or itself
|
|
28303
|
+
*
|
|
28304
|
+
* @param {CallableEntityState} entity The entity to resolve pass through entities with outputs for
|
|
28305
|
+
* @returns {{ ancestor: PassThroughCallableEntityWithOutputsState, call: CallableEntityState, callType: ('success'|'error') }[]} An array of independent parallel conditions direct calls
|
|
28306
|
+
*/
|
|
28307
|
+
export declare function resolveAllParallelAncestorErrorCallersForEntity(entity: CallableEntityState): {
|
|
28308
|
+
caller: PassThroughCallableEntityWithOutputsState;
|
|
28309
|
+
}[];
|
|
28310
|
+
|
|
28294
28311
|
declare function resolveAreThereConflictingColumnsInSelectAll(allColumnsSelector: AllColumnsSelector | null): boolean;
|
|
28295
28312
|
|
|
28296
28313
|
export declare function resolveArgumentDeclarationValue(entity: ArgumentDeclarationState, context: IValueResolutionContext, onlyDefault?: boolean): IDynamicValue | null;
|