@elyx-code/project-logic-tree 0.0.6593 → 0.0.6594
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 +6 -1
- package/dist/index.js +19681 -19340
- package/dist/index.umd.cjs +195 -190
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -7060,7 +7060,12 @@ export declare function findNextCombinedSingleCallerAncestor(targetA: CallableEn
|
|
|
7060
7060
|
callType: 'success' | 'error' | 'entry' | 'loop-body' | null;
|
|
7061
7061
|
};
|
|
7062
7062
|
|
|
7063
|
-
export declare function findNextSingleCallerAncestor(target: CallableEntityState, from?: CallerEntityState): {
|
|
7063
|
+
export declare function findNextSingleCallerAncestor(target: CallableEntityState, from?: CallerEntityState, debug?: boolean): {
|
|
7064
|
+
ancestor: CallerEntityState | null;
|
|
7065
|
+
callType: 'success' | 'error' | 'entry' | 'loop-body' | null;
|
|
7066
|
+
};
|
|
7067
|
+
|
|
7068
|
+
export declare function findNextSingleCallerAncestorV2(target: CallableEntityState, from?: CallerEntityState, debug?: boolean): {
|
|
7064
7069
|
ancestor: CallerEntityState | null;
|
|
7065
7070
|
callType: 'success' | 'error' | 'entry' | 'loop-body' | null;
|
|
7066
7071
|
};
|