@elyx-code/project-logic-tree 0.0.6871 → 0.0.6873
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 +186 -186
- package/dist/index.d.ts +5 -1
- package/dist/index.js +15958 -15662
- package/package.json +5 -5
package/dist/index.d.ts
CHANGED
|
@@ -9985,6 +9985,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
9985
9985
|
}
|
|
9986
9986
|
|
|
9987
9987
|
export declare enum CommonStringValidationErrorCodes {
|
|
9988
|
+
ValueMustBeString = "value-must-be-string",
|
|
9988
9989
|
StringValueMustNotHaveSpaces = "string-value-must-not-have-spaces",
|
|
9989
9990
|
StringValueMustNotHaveDashes = "string-value-must-not-have-dashes",
|
|
9990
9991
|
MustBeUniqueAmongSameEntities = "must-be-unique-among-same-entities"
|
|
@@ -34633,6 +34634,8 @@ export declare enum BaseValueDescriptorIds {
|
|
|
34633
34634
|
|
|
34634
34635
|
export declare function validateVariableInternalCallUse(self: VariableState): EntityError[];
|
|
34635
34636
|
|
|
34637
|
+
export declare function validateWithCodeNativeValueValidation(self: ArgumentDeclarationState | InputMapState | ReturnStatementState | BreakStatementState | ContinueStatementState | PropertyState | ValueDescriptorState): EntityError[];
|
|
34638
|
+
|
|
34636
34639
|
export declare const VALUE_READING_ENTITIES_EXPLANATION: string;
|
|
34637
34640
|
|
|
34638
34641
|
export declare const VALUE_READING_TYPES: EntityType[];
|
|
@@ -35098,7 +35101,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
35098
35101
|
activeVersion: boolean;
|
|
35099
35102
|
initialized: boolean;
|
|
35100
35103
|
startedInitialization: boolean;
|
|
35101
|
-
readonly
|
|
35104
|
+
readonly _codeNativeValueValidation: ValueValidationCallback | null;
|
|
35102
35105
|
constructor(initialData: IValueDescriptor | IValueDescriptorTransfer, parentProjectState: ProjectState);
|
|
35103
35106
|
static repository: IEditableEntityPersistanceRepository;
|
|
35104
35107
|
static type: EntityType.ValueDescriptor;
|
|
@@ -35127,6 +35130,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
35127
35130
|
}[];
|
|
35128
35131
|
modifiedData: IValueDescriptorGenerationTarget;
|
|
35129
35132
|
};
|
|
35133
|
+
get codeNativeValueValidation(): ValueValidationCallback | null;
|
|
35130
35134
|
validateGeneratedUpdate(data: Partial<IValueDescriptorGenerationTarget>): {
|
|
35131
35135
|
errors: EntityGenerationError[];
|
|
35132
35136
|
explanations: {
|