@elyx-code/project-logic-tree 0.0.6855 → 0.0.6857
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 +41 -39
- package/dist/index.d.ts +2 -1
- package/dist/index.js +184 -175
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -32734,7 +32734,8 @@ export declare enum BaseValueDescriptorIds {
|
|
|
32734
32734
|
CannotValueWriteItself = "cannot-value-write-itself",
|
|
32735
32735
|
CannotBeCalledBeforeDeclaration = "cannot-be-called-before-declaration",
|
|
32736
32736
|
CannotBeCalledInParallelBranchToDeclaration = "cannot-be-called-in-parallel-branch-to-declaration",
|
|
32737
|
-
CannotBeHigherScopeThanDeclaration = "cannot-be-higher-scope-than-declaration"
|
|
32737
|
+
CannotBeHigherScopeThanDeclaration = "cannot-be-higher-scope-than-declaration",
|
|
32738
|
+
InputsInGlobalVariableDeclarationsCannotReadValues = "inputs-in-global-variable-declarations-cannot-read-values"
|
|
32738
32739
|
}
|
|
32739
32740
|
|
|
32740
32741
|
export declare const STATIC_PROPERTY_HEIGHT = 49;
|