@elyx-code/project-logic-tree 0.0.6482 → 0.0.6483
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 +17 -2
- package/dist/index.js +56104 -56062
- package/dist/index.umd.cjs +190 -190
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -15367,7 +15367,10 @@ export declare enum SharedEntityErrorCode {
|
|
|
15367
15367
|
InternalCallParentDeclarationEntityInvalidType = "internal-call-parent-declaration-entity-invalid-type",
|
|
15368
15368
|
InternalCallDeclarationNotFoundInParentDatatypeEntity = "internal-call-declaration-not-found-in-parent-datatype-entity",
|
|
15369
15369
|
InternalCallDeclarationIsNotFunctionDeclaration = "internal-call-declaration-is-not-function-declaration",
|
|
15370
|
-
InternalCallDeclarationNotInParentDatatypeEntity = "internal-call-declaration-not-in-parent-datatype-entity"
|
|
15370
|
+
InternalCallDeclarationNotInParentDatatypeEntity = "internal-call-declaration-not-in-parent-datatype-entity",
|
|
15371
|
+
GlobalVariableDeclarationCannotCatchError = "global-variable-declaration-cannot-catch-error",
|
|
15372
|
+
GlobalVariableDeclarationCannotCallOnError = "global-variable-declaration-cannot-call-on-error",
|
|
15373
|
+
GlobalVariableDeclarationCannotBeCalled = "global-variable-declaration-cannot-be-called"
|
|
15371
15374
|
}
|
|
15372
15375
|
|
|
15373
15376
|
export declare abstract class SharedStateFunctionality {
|
|
@@ -15927,6 +15930,17 @@ export declare function validateGenerationUpdate(generatedPayload: Partial<UserM
|
|
|
15927
15930
|
messageAddition: string;
|
|
15928
15931
|
};
|
|
15929
15932
|
|
|
15933
|
+
/**
|
|
15934
|
+
* Check if it is global, if so, it cannot:
|
|
15935
|
+
* - Catch an error
|
|
15936
|
+
* - Be called
|
|
15937
|
+
* - Or call on the error branch (because that is equivalent to an explicit error catch)
|
|
15938
|
+
*
|
|
15939
|
+
* @param self - The variable declaration state to validate
|
|
15940
|
+
* @returns An array of EntityError objects representing validation errors
|
|
15941
|
+
*/
|
|
15942
|
+
declare function validateGlobalVariableDeclaration(self: VariableDeclarationState): EntityError[];
|
|
15943
|
+
|
|
15930
15944
|
declare function validateImplementation(self: PropertyState): EntityError[];
|
|
15931
15945
|
|
|
15932
15946
|
declare function validateListLoop(self: LoopState): EntityError[];
|
|
@@ -16796,7 +16810,8 @@ export declare type VariableDeclarationTypesUnion = IVariableDeclaration | IVari
|
|
|
16796
16810
|
declare namespace variableDeclarationValidation {
|
|
16797
16811
|
export {
|
|
16798
16812
|
validate_5 as validate,
|
|
16799
|
-
validateVariableDeclarationName_2 as validateVariableDeclarationName
|
|
16813
|
+
validateVariableDeclarationName_2 as validateVariableDeclarationName,
|
|
16814
|
+
validateGlobalVariableDeclaration
|
|
16800
16815
|
}
|
|
16801
16816
|
}
|
|
16802
16817
|
export { variableDeclarationValidation }
|