@elyx-code/project-logic-tree 0.0.6544 → 0.0.6546
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 +9 -3
- package/dist/index.js +5340 -5251
- package/dist/index.umd.cjs +115 -115
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -14059,7 +14059,11 @@ export declare type IncompatibleScope = IIncompatibleParallelInProjectScope | II
|
|
|
14059
14059
|
|
|
14060
14060
|
export declare function inferArgumentDeclarationDataType(entity: ArgumentDeclarationState, _changeSet?: ChangeSet | null): DataTypeState | null;
|
|
14061
14061
|
|
|
14062
|
-
export declare function
|
|
14062
|
+
export declare function inferBreakStatementDataType(entity: BreakStatementState, _changeSet?: ChangeSet | null): DataTypeState | null;
|
|
14063
|
+
|
|
14064
|
+
export declare function inferContinueStatementDataType(entity: ContinueStatementState, _changeSet?: ChangeSet | null): DataTypeState | null;
|
|
14065
|
+
|
|
14066
|
+
export declare function inferDataType(entity: EntityWithValueState | PropertyState | ValueDescriptorState | TerminationEntityState, changeSet?: ChangeSet | null): DataTypeState | null;
|
|
14063
14067
|
|
|
14064
14068
|
export declare function inferInputMapDataType(entity: InputMapState, changeSet?: ChangeSet | null): DataTypeState | null;
|
|
14065
14069
|
|
|
@@ -14067,6 +14071,8 @@ export declare function inferOutputMapDataType(entity: OutputMapState, _changeSe
|
|
|
14067
14071
|
|
|
14068
14072
|
export declare function inferPropertyDataType(entity: PropertyState, _changeSet?: ChangeSet | null): DataTypeState | null;
|
|
14069
14073
|
|
|
14074
|
+
export declare function inferReturnStatementDataType(entity: ReturnStatementState, _changeSet?: ChangeSet | null): DataTypeState | null;
|
|
14075
|
+
|
|
14070
14076
|
export declare function inferValueDescriptorDataType(entity: ValueDescriptorState, _changeSet?: ChangeSet | null): DataTypeState | null;
|
|
14071
14077
|
|
|
14072
14078
|
export declare function inferVariableDeclarationDataType(entity: VariableDeclarationState, changeSet?: ChangeSet | null): DataTypeState | null;
|
|
@@ -18239,7 +18245,7 @@ export declare function resolveClonedEntityProject(newParent: EntityState | null
|
|
|
18239
18245
|
|
|
18240
18246
|
export declare function resolveConditionOperatorLabel(condition: ConditionState): "and" | "or" | "is equal to" | "is not equal to" | "is greater than" | "is greater than or equal to" | "is less than" | "is less than or equal to" | "is empty" | "is present" | undefined;
|
|
18241
18247
|
|
|
18242
|
-
export declare function resolveDataType(entity: EntityWithValueState | PropertyState | ValueDescriptorState, changeSet?: ChangeSet | null): DataTypeState | null;
|
|
18248
|
+
export declare function resolveDataType(entity: EntityWithValueState | PropertyState | ValueDescriptorState | TerminationEntityState, changeSet?: ChangeSet | null): DataTypeState | null;
|
|
18243
18249
|
|
|
18244
18250
|
export declare function resolveDataTypeEntityOrNestedChildrenFromLiteralValue(value: any, parentDataType: DataTypeState, newDefinitionEntityMetadata: {
|
|
18245
18251
|
id?: EntityId;
|
|
@@ -19006,7 +19012,7 @@ export declare enum SharedEntityErrorCode {
|
|
|
19006
19012
|
InternalCallParentDeclarationEntityInvalidType = "internal-call-parent-declaration-entity-invalid-type",
|
|
19007
19013
|
InternalCallDeclarationNotFoundInParentDatatypeEntity = "internal-call-declaration-not-found-in-parent-datatype-entity",
|
|
19008
19014
|
InternalCallDeclarationNotFound = "internal-call-declaration-not-found",
|
|
19009
|
-
|
|
19015
|
+
InternalCallDeclarationIsInvalidType = "internal-call-declaration-is-invalid-type",
|
|
19010
19016
|
InternalCallDeclarationNotInParentDatatypeEntity = "internal-call-declaration-not-in-parent-datatype-entity",
|
|
19011
19017
|
GlobalVariableDeclarationCannotCatchError = "global-variable-declaration-cannot-catch-error",
|
|
19012
19018
|
GlobalVariableDeclarationCannotCallOnError = "global-variable-declaration-cannot-call-on-error",
|