@elyx-code/project-logic-tree 0.0.7033 → 0.0.7035
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 +227 -227
- package/dist/index.d.ts +7 -3
- package/dist/index.js +19683 -19673
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -9931,12 +9931,16 @@ export declare enum BaseValueDescriptorIds {
|
|
|
9931
9931
|
* Checks wether two sets of implementable entities like properties or methods, presumably from two different entities, have overlap
|
|
9932
9932
|
* This means that entities on both lists have have the same name or implement the same base entity/descriptor
|
|
9933
9933
|
*/
|
|
9934
|
-
export declare function checkImplementationsOverlap(higherEntities: PropertyState[], baseEntities: PropertyState[], implementationErrorCode: SharedEntityErrorCode.PropertyOverwritesBasePropertyWithSameImplementation | SharedEntityErrorCode.PropertyOverwritesOtherImplementedEntitysPropertyWithSameImplementation | SharedEntityErrorCode.PropertyOverwritesOtherExtendedEntitysPropertyWithSameImplementation | SharedEntityErrorCode.PropertyOverwritesOtherSiblingWithSameImplementation, nameErrorCode: SharedEntityErrorCode.PropertyOverwritesBasePropertyWithSameName | SharedEntityErrorCode.PropertyOverwritesOtherImplementedEntitysPropertyWithSameName | SharedEntityErrorCode.PropertyOverwritesOtherExtendedEntitysPropertyWithSameName | SharedEntityErrorCode.PropertyOverwritesOtherSiblingWithSameName
|
|
9934
|
+
export declare function checkImplementationsOverlap(higherEntities: PropertyState[], baseEntities: PropertyState[], implementationErrorCode: SharedEntityErrorCode.PropertyOverwritesBasePropertyWithSameImplementation | SharedEntityErrorCode.PropertyOverwritesOtherImplementedEntitysPropertyWithSameImplementation | SharedEntityErrorCode.PropertyOverwritesOtherExtendedEntitysPropertyWithSameImplementation | SharedEntityErrorCode.PropertyOverwritesOtherSiblingWithSameImplementation, nameErrorCode: SharedEntityErrorCode.PropertyOverwritesBasePropertyWithSameName | SharedEntityErrorCode.PropertyOverwritesOtherImplementedEntitysPropertyWithSameName | SharedEntityErrorCode.PropertyOverwritesOtherExtendedEntitysPropertyWithSameName | SharedEntityErrorCode.PropertyOverwritesOtherSiblingWithSameName, options?: {
|
|
9935
|
+
ignoreImplementationMatch?: boolean;
|
|
9936
|
+
}): {
|
|
9935
9937
|
errors: EntityError[];
|
|
9936
9938
|
overlap: boolean;
|
|
9937
9939
|
};
|
|
9938
9940
|
|
|
9939
|
-
export declare function checkImplementationsOverlap(higherEntities: (FunctionDeclarationState | ActionDescriptorState)[], baseEntities: (FunctionDeclarationState | ActionDescriptorState)[], implementationErrorCode: SharedEntityErrorCode.MethodOverwritesBaseMethodWithSameImplementation | SharedEntityErrorCode.MethodOverwritesOtherImplementedEntitysMethodWithSameImplementation | SharedEntityErrorCode.MethodOverwritesOtherExtendedEntitysMethodWithSameImplementation | SharedEntityErrorCode.MethodOverwritesOtherSiblingWithSameImplementation, nameErrorCode: SharedEntityErrorCode.MethodOverwritesBaseMethodWithSameName | SharedEntityErrorCode.MethodOverwritesOtherImplementedEntitysMethodWithSameName | SharedEntityErrorCode.MethodOverwritesOtherExtendedEntitysMethodWithSameName | SharedEntityErrorCode.MethodOverwritesOtherSiblingWithSameName
|
|
9941
|
+
export declare function checkImplementationsOverlap(higherEntities: (FunctionDeclarationState | ActionDescriptorState)[], baseEntities: (FunctionDeclarationState | ActionDescriptorState)[], implementationErrorCode: SharedEntityErrorCode.MethodOverwritesBaseMethodWithSameImplementation | SharedEntityErrorCode.MethodOverwritesOtherImplementedEntitysMethodWithSameImplementation | SharedEntityErrorCode.MethodOverwritesOtherExtendedEntitysMethodWithSameImplementation | SharedEntityErrorCode.MethodOverwritesOtherSiblingWithSameImplementation, nameErrorCode: SharedEntityErrorCode.MethodOverwritesBaseMethodWithSameName | SharedEntityErrorCode.MethodOverwritesOtherImplementedEntitysMethodWithSameName | SharedEntityErrorCode.MethodOverwritesOtherExtendedEntitysMethodWithSameName | SharedEntityErrorCode.MethodOverwritesOtherSiblingWithSameName, options?: {
|
|
9942
|
+
ignoreImplementationMatch?: boolean;
|
|
9943
|
+
}): {
|
|
9940
9944
|
errors: EntityError[];
|
|
9941
9945
|
overlap: boolean;
|
|
9942
9946
|
};
|
|
@@ -28535,7 +28539,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
28535
28539
|
|
|
28536
28540
|
export declare function resolveOutputMapValue(entity: OutputMapState, context: IValueResolutionContext, onlyDefault?: boolean): IDynamicValue | null;
|
|
28537
28541
|
|
|
28538
|
-
export declare function resolvePassThroughCallableValue(entity: OperationState | InternalCallState | FunctionCallState | SearchState, context: IValueResolutionContext, onlyDefault?: boolean): IDynamicValue | null;
|
|
28542
|
+
export declare function resolvePassThroughCallableValue(entity: LoopState | OperationState | InternalCallState | FunctionCallState | SearchState, context: IValueResolutionContext, onlyDefault?: boolean): IDynamicValue | null;
|
|
28539
28543
|
|
|
28540
28544
|
export declare function resolvePersistedDefinitionEntityDatabaseEntity(entity: DefinitionEntityState): DefinitionEntityState | null;
|
|
28541
28545
|
|