@elyx-code/project-logic-tree 0.0.6554 → 0.0.6555
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 -0
- package/dist/index.js +973 -945
- package/dist/index.umd.cjs +66 -66
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -14083,8 +14083,14 @@ export declare function inferContinueStatementDataType(entity: ContinueStatement
|
|
|
14083
14083
|
|
|
14084
14084
|
export declare function inferDataType(entity: EntityWithValueState | PropertyState | ValueDescriptorState | TerminationEntityState, changeSet?: ChangeSet | null): DataTypeState | null;
|
|
14085
14085
|
|
|
14086
|
+
export declare function inferFunctionCallDataType(entity: FunctionCallState, _changeSet?: ChangeSet | null): DataTypeState | null;
|
|
14087
|
+
|
|
14086
14088
|
export declare function inferInputMapDataType(entity: InputMapState, changeSet?: ChangeSet | null): DataTypeState | null;
|
|
14087
14089
|
|
|
14090
|
+
export declare function inferInternalCallDataType(entity: InternalCallState, _changeSet?: ChangeSet | null): DataTypeState | null;
|
|
14091
|
+
|
|
14092
|
+
export declare function inferLoopDataType(entity: LoopState, _changeSet?: ChangeSet | null): DataTypeState | null;
|
|
14093
|
+
|
|
14088
14094
|
export declare function inferOutputMapDataType(entity: OutputMapState, _changeSet?: ChangeSet | null): DataTypeState | null;
|
|
14089
14095
|
|
|
14090
14096
|
export declare function inferPropertyDataType(entity: PropertyState, _changeSet?: ChangeSet | null): DataTypeState | null;
|