@elyx-code/project-logic-tree 0.0.6550 → 0.0.6552
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 +6 -3
- package/dist/index.js +977 -947
- package/dist/index.umd.cjs +67 -67
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -5787,6 +5787,7 @@ export declare enum ExecutionState {
|
|
|
5787
5787
|
|
|
5788
5788
|
export declare enum ExecutionTerminationType {
|
|
5789
5789
|
Success = "success",
|
|
5790
|
+
ConditionNotMet = "condition-not-met",
|
|
5790
5791
|
CaughtError = "caught-error",
|
|
5791
5792
|
UnhandledError = "unhandled-error",
|
|
5792
5793
|
Break = "break",
|
|
@@ -14059,9 +14060,9 @@ export declare type IncompatibleScope = IIncompatibleParallelInProjectScope | II
|
|
|
14059
14060
|
|
|
14060
14061
|
export declare function inferArgumentDeclarationDataType(entity: ArgumentDeclarationState, _changeSet?: ChangeSet | null): DataTypeState | null;
|
|
14061
14062
|
|
|
14062
|
-
export declare function inferBreakStatementDataType(entity: BreakStatementState,
|
|
14063
|
+
export declare function inferBreakStatementDataType(entity: BreakStatementState, changeSet?: ChangeSet | null): DataTypeState | null;
|
|
14063
14064
|
|
|
14064
|
-
export declare function inferContinueStatementDataType(entity: ContinueStatementState,
|
|
14065
|
+
export declare function inferContinueStatementDataType(entity: ContinueStatementState, changeSet?: ChangeSet | null): DataTypeState | null;
|
|
14065
14066
|
|
|
14066
14067
|
export declare function inferDataType(entity: EntityWithValueState | PropertyState | ValueDescriptorState | TerminationEntityState, changeSet?: ChangeSet | null): DataTypeState | null;
|
|
14067
14068
|
|
|
@@ -14071,7 +14072,9 @@ export declare function inferOutputMapDataType(entity: OutputMapState, _changeSe
|
|
|
14071
14072
|
|
|
14072
14073
|
export declare function inferPropertyDataType(entity: PropertyState, _changeSet?: ChangeSet | null): DataTypeState | null;
|
|
14073
14074
|
|
|
14074
|
-
export declare function inferReturnStatementDataType(entity: ReturnStatementState,
|
|
14075
|
+
export declare function inferReturnStatementDataType(entity: ReturnStatementState, changeSet?: ChangeSet | null): DataTypeState | null;
|
|
14076
|
+
|
|
14077
|
+
export declare function inferSearchDataType(entity: SearchState, _changeSet?: ChangeSet | null): DataTypeState | null;
|
|
14075
14078
|
|
|
14076
14079
|
export declare function inferValueDescriptorDataType(entity: ValueDescriptorState, _changeSet?: ChangeSet | null): DataTypeState | null;
|
|
14077
14080
|
|