@elyx-code/project-logic-tree 0.0.6588 → 0.0.6589

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
@@ -7055,6 +7055,11 @@ export declare function findEntityFromKeys(keys: string[], project: ProjectState
7055
7055
 
7056
7056
  export declare function findNextAvailableName(baseName: string, allEntitiesOfType: EntityWithNames[]): string;
7057
7057
 
7058
+ export declare function findNextCombinedSingleCallerAncestor(targetA: CallableEntityState, targetB: CallableEntityState, from?: CallerEntityState): {
7059
+ ancestor: CallerEntityState | null;
7060
+ callType: 'success' | 'error' | 'entry' | 'loop-body' | null;
7061
+ };
7062
+
7058
7063
  export declare function findNextSingleCallerAncestor(target: CallableEntityState, from?: CallerEntityState): {
7059
7064
  ancestor: CallerEntityState | null;
7060
7065
  callType: 'success' | 'error' | 'entry' | 'loop-body' | null;