@elyx-code/project-logic-tree 0.0.6464 → 0.0.6465

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
@@ -1870,6 +1870,8 @@ export declare function checkAreDefinitionEntitiesCompatibleAsDataType(sourceDef
1870
1870
 
1871
1871
  export declare function checkArePropertiesCompatibleAsDataType(sourceProperty: PropertyState, targetProperty: PropertyState): boolean;
1872
1872
 
1873
+ export declare function checkEveryCallerReachesOrIsAncestor(entity: CallableEntityState, ancestor: CallerEntityState): boolean;
1874
+
1873
1875
  export declare function checkExtendsBaseEntity(entity: DefinitionEntityState | BuiltInBaseEntityState, baseEntityName: BaseEntityNames): boolean;
1874
1876
 
1875
1877
  export declare function checkHasBaseEntity(entity: DefinitionEntityState | BuiltInBaseEntityState, baseEntityName: BaseEntityNames): boolean;
@@ -3997,6 +3999,11 @@ export declare function findNextIndividualCommonCallerAncestorFromGiven(entityA:
3997
3999
  callType: 'success' | 'error' | 'entry' | 'loop-body' | null;
3998
4000
  };
3999
4001
 
4002
+ export declare function findNextSingleCallerAncestor(target: CallableEntityState, from?: CallerEntityState): {
4003
+ ancestor: CallerEntityState | null;
4004
+ callType: 'success' | 'error' | 'entry' | 'loop-body' | null;
4005
+ };
4006
+
4000
4007
  export declare function findReferencesToSelfInProject(element: EntityState): EntityState[];
4001
4008
 
4002
4009
  export declare function findReferenceToSelfInList(element: EntityState, elements: EntityState[]): EntityState[];