@elyx-code/project-logic-tree 0.0.6065 → 0.0.6067
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/definitions/mock/default-mock/loops/global-counted-loop-test/ids.d.ts +1 -1
- package/dist/definitions/mock/default-mock/loops/global-object-keys-loop/body.d.ts +4 -4
- package/dist/definitions/mock/default-mock/loops/global-object-keys-loop/ids.d.ts +1 -1
- package/dist/definitions/mock/default-mock/loops/global-object-values-loop/ids.d.ts +1 -1
- package/dist/definitions/mock/default-mock/loops/global-test-iterate-over-string/ids.d.ts +1 -1
- package/dist/definitions/mock/default-mock/loops/iterate-over-list/ids.d.ts +1 -1
- package/dist/index.js +2095 -2094
- package/dist/index.umd.cjs +170 -170
- package/package.json +1 -1
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export declare const GLOBAL_COUNTED_TEST_LOOP_ID = "global-counted-test-loop-id";
|
|
2
2
|
export declare const GLOBAL_COUNTED_TEST_LOOP_BODY_ID = "global-counted-test-loop-body-id";
|
|
3
|
-
export declare const GLOBAL_COUNTED_TEST_LOOP_CURRENT_ITERATION_ARGUMENT_DECLARATION_ID = "global-counted-test-loop-body-current-iteration-argument-declaration-id";
|
|
3
|
+
export declare const GLOBAL_COUNTED_TEST_LOOP_CURRENT_ITERATION_ARGUMENT_DECLARATION_ID = "global-counted-test-loop-body-current-iteration-value-argument-declaration-id";
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { IArgumentDeclarationReference, IArgumentDeclarationTransfer, IDataTypeTransfer, IFunctionDeclarationReference, IFunctionDeclarationTransfer, ILoopReference } from '../../../..';
|
|
2
2
|
|
|
3
|
-
export declare const
|
|
4
|
-
export declare const
|
|
5
|
-
export declare const
|
|
6
|
-
export declare const
|
|
3
|
+
export declare const globalObjectKeysTestLoopBodyCurrentIterationValueArgumentDeclarationDataTypeParentRef: IArgumentDeclarationReference;
|
|
4
|
+
export declare const globalObjectKeysTestLoopBodyCurrentIterationValueArgumentDeclarationDataType: IDataTypeTransfer;
|
|
5
|
+
export declare const globalObjectKeysTestLoopBodyCurrentIterationValueArgumentDeclarationParentRef: IFunctionDeclarationReference;
|
|
6
|
+
export declare const globalObjectKeysTestLoopBodyCurrentIterationValueArgumentDeclaration: IArgumentDeclarationTransfer;
|
|
7
7
|
export declare const globalObjectKeysTestLoopBodyParentRef: ILoopReference;
|
|
8
8
|
export declare const globalObjectKeysTestLoopBody: IFunctionDeclarationTransfer;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export declare const GLOBAL_OBJECT_KEYS_TEST_LOOP_ID = "global-object-keys-test-loop-id";
|
|
2
2
|
export declare const GLOBAL_OBJECT_KEYS_TEST_LOOP_BODY_ID = "global-object-keys-test-loop-body-id";
|
|
3
|
-
export declare const
|
|
3
|
+
export declare const GLOBAL_OBJECT_KEYS_TEST_LOOP_CURRENT_ITERATION_VALUE_ARGUMENT_DECLARATION_ID = "global-object-keys-test-loop-body-current-iteration-value-argument-declaration-id";
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export declare const GLOBAL_OBJECT_VALUES_TEST_LOOP_ID = "global-object-values-test-loop-id";
|
|
2
2
|
export declare const GLOBAL_OBJECT_VALUES_TEST_LOOP_BODY_ID = "global-object-values-test-loop-body-id";
|
|
3
|
-
export declare const GLOBAL_OBJECT_VALUES_TEST_LOOP_CURRENT_ITERATION_ARGUMENT_DECLARATION_ID = "global-object-values-test-loop-body-current-iteration-argument-declaration-id";
|
|
3
|
+
export declare const GLOBAL_OBJECT_VALUES_TEST_LOOP_CURRENT_ITERATION_ARGUMENT_DECLARATION_ID = "global-object-values-test-loop-body-current-iteration-value-argument-declaration-id";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare const GLOBAL_TEST_ITERATE_OVER_STRING_LOOP_ID = "global-test-iterate-over-string-loop-id";
|
|
2
2
|
export declare const GLOBAL_TEST_ITERATE_OVER_STRING_LOOP_BODY_ID = "global-test-iterate-over-string-loop-body-id";
|
|
3
|
-
export declare const GLOBAL_TEST_ITERATE_OVER_STRING_LOOP_CURRENT_ITERATION_ARGUMENT_DECLARATION_ID = "global-test-iterate-over-string-loop-body-current-iteration-argument-declaration-id";
|
|
3
|
+
export declare const GLOBAL_TEST_ITERATE_OVER_STRING_LOOP_CURRENT_ITERATION_ARGUMENT_DECLARATION_ID = "global-test-iterate-over-string-loop-body-current-iteration-value-argument-declaration-id";
|
|
4
4
|
export declare const GLOBAL_TEST_ITERATE_OVER_STRING_LOOP_ITERATION_LIST_INPUT_MAP_ID = "global-test-iterate-over-string-loop-iteration-list-input-map-id";
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export declare const ITERATE_OVER_LIST_LOOP_ID = "iterate-over-list-loop-id";
|
|
2
2
|
export declare const ITERATE_OVER_LIST_LOOP_BODY_ID = "iterate-over-list-loop-body-id";
|
|
3
|
-
export declare const ITERATE_OVER_LIST_LOOP_CURRENT_ITERATION_ARGUMENT_DECLARATION_ID = "iterate-over-list-loop-body-current-iteration-argument-declaration-id";
|
|
3
|
+
export declare const ITERATE_OVER_LIST_LOOP_CURRENT_ITERATION_ARGUMENT_DECLARATION_ID = "iterate-over-list-loop-body-current-iteration-value-argument-declaration-id";
|