@elyx-code/project-logic-tree 0.0.6759 → 0.0.6761
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 +74 -74
- package/dist/index.d.ts +2 -2
- package/dist/index.js +8923 -8893
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -11625,7 +11625,6 @@ export declare class DefaultProjectLogicContext extends ExtensionContextBase<Ext
|
|
|
11625
11625
|
validateChildren(): void;
|
|
11626
11626
|
getErrors(): EntityError[];
|
|
11627
11627
|
getShallowErrors(): EntityError[];
|
|
11628
|
-
getDefinitionEntity(id: EntityId): DefinitionEntityState | null;
|
|
11629
11628
|
addDefinitionEntity(entity: DefinitionEntityState): DefinitionEntityState;
|
|
11630
11629
|
addFunctionDeclaration(func: FunctionDeclarationState): FunctionDeclarationState;
|
|
11631
11630
|
addFunctionCall(func: FunctionCallState): FunctionCallState;
|
|
@@ -29538,6 +29537,7 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
29538
29537
|
deletedInstances: {
|
|
29539
29538
|
[id: EntityId]: UserManagedEntityState;
|
|
29540
29539
|
};
|
|
29540
|
+
subscribedDefinitionEntities: Set<EntityId>;
|
|
29541
29541
|
errors: EntityError[];
|
|
29542
29542
|
references: IGenericReference[];
|
|
29543
29543
|
history: ChangeSet[];
|
|
@@ -29709,7 +29709,6 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
29709
29709
|
getErrorsAsync(options?: YieldOptions): Promise<EntityError[]>;
|
|
29710
29710
|
getShallowErrors(): EntityError[];
|
|
29711
29711
|
clone(): ProjectState;
|
|
29712
|
-
getDefinitionEntity(id: EntityId): DefinitionEntityState | null;
|
|
29713
29712
|
addDefinitionEntity(entity: DefinitionEntityState): DefinitionEntityState;
|
|
29714
29713
|
addFunctionDeclaration(func: FunctionDeclarationState): FunctionDeclarationState;
|
|
29715
29714
|
addFunctionCall(func: FunctionCallState): FunctionCallState;
|
|
@@ -29739,6 +29738,7 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
29739
29738
|
getConditions(): ConditionState[];
|
|
29740
29739
|
getOperations(): OperationState[];
|
|
29741
29740
|
getFunctionCalls(): FunctionCallState[];
|
|
29741
|
+
getDefinitionEntities(except?: Set<EntityId>): DefinitionEntityState[];
|
|
29742
29742
|
getVariables(): VariableState[];
|
|
29743
29743
|
getVariableInstances(): VariableInstanceState[];
|
|
29744
29744
|
getVariableDeclarations(): VariableDeclarationState[];
|