@elyx-code/project-logic-tree 0.0.6538 → 0.0.6540
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 +13 -13
- package/dist/index.js +14267 -14011
- package/dist/index.umd.cjs +201 -201
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -164,7 +164,7 @@ export declare class ActionDescriptorState extends UserManagedVersionedState imp
|
|
|
164
164
|
removeDataType(changeSet?: ChangeSet | null): ActionDescriptorState;
|
|
165
165
|
getDataType(changeSet?: ChangeSet | null): DataTypeState | null;
|
|
166
166
|
createInternalCall(changeSet: (ChangeSet | null) | undefined, parent: VariableState, overrides?: Partial<IInternalCallTransfer>): InternalCallState;
|
|
167
|
-
|
|
167
|
+
getUniqueOutputProperties(): PropertyState[];
|
|
168
168
|
}
|
|
169
169
|
|
|
170
170
|
export declare type ActionDescriptorTypesUnion = IActionDescriptor | IActionDescriptorTransfer | IActionDescriptorShallowTransfer | IActionDescriptorGenerationTarget;
|
|
@@ -3468,7 +3468,7 @@ export declare class BuiltInFunctionImplementationAbortExecutionModule extends B
|
|
|
3468
3468
|
value: ExecutionTerminationType;
|
|
3469
3469
|
entity: InternalCallState;
|
|
3470
3470
|
error: null;
|
|
3471
|
-
|
|
3471
|
+
result: null;
|
|
3472
3472
|
}>;
|
|
3473
3473
|
};
|
|
3474
3474
|
}
|
|
@@ -3480,7 +3480,7 @@ export declare class BuiltInFunctionImplementationCreatePersistedEntityModule ex
|
|
|
3480
3480
|
value: ExecutionTerminationType;
|
|
3481
3481
|
entity: InternalCallState;
|
|
3482
3482
|
error: null;
|
|
3483
|
-
|
|
3483
|
+
result: null;
|
|
3484
3484
|
}>;
|
|
3485
3485
|
};
|
|
3486
3486
|
}
|
|
@@ -3492,7 +3492,7 @@ export declare class BuiltInFunctionImplementationDeletePersistedEntityModule ex
|
|
|
3492
3492
|
value: ExecutionTerminationType;
|
|
3493
3493
|
entity: InternalCallState;
|
|
3494
3494
|
error: null;
|
|
3495
|
-
|
|
3495
|
+
result: null;
|
|
3496
3496
|
}>;
|
|
3497
3497
|
};
|
|
3498
3498
|
}
|
|
@@ -3508,7 +3508,7 @@ export declare class BuiltInFunctionImplementationUpdatePersistedEntityModule ex
|
|
|
3508
3508
|
value: ExecutionTerminationType;
|
|
3509
3509
|
entity: InternalCallState;
|
|
3510
3510
|
error: null;
|
|
3511
|
-
|
|
3511
|
+
result: null;
|
|
3512
3512
|
}>;
|
|
3513
3513
|
};
|
|
3514
3514
|
}
|
|
@@ -5730,11 +5730,11 @@ export declare class Execution extends Events {
|
|
|
5730
5730
|
executeCondition(condition: ConditionState, inputs: IDynamicValue[]): Promise<IExecutionResult>;
|
|
5731
5731
|
executeDetachedFullFunctionDeclarationLogic(functionDeclaration: FunctionDeclarationState, inputs: IDynamicValue[], project: ProjectState, client?: IExecutionClient): Promise<IExecutionResult>;
|
|
5732
5732
|
executeFullFunctionDeclarationLogic(functionDeclaration: FunctionDeclarationState, inputs: IDynamicValue[], client?: IExecutionClient): Promise<IExecutionResult>;
|
|
5733
|
-
static executeEntryPointEntity(entryPointEntity: EntryPointEntityState,
|
|
5734
|
-
|
|
5735
|
-
|
|
5736
|
-
|
|
5737
|
-
|
|
5733
|
+
static executeEntryPointEntity(entryPointEntity: EntryPointEntityState, _inputs: IDynamicValue[]): Promise<IExecutionResult>;
|
|
5734
|
+
executeReturnStatement(entity: ReturnStatementState, _inputs: IDynamicValue[]): Promise<IExecutionResult>;
|
|
5735
|
+
executeContinueStatement(entity: ContinueStatementState, _inputs: IDynamicValue[]): Promise<IExecutionResult>;
|
|
5736
|
+
executeBreakStatement(entity: BreakStatementState, _inputs: IDynamicValue[]): Promise<IExecutionResult>;
|
|
5737
|
+
executeVariable(entity: VariableState, _inputs: IDynamicValue[]): Promise<IExecutionResult>;
|
|
5738
5738
|
mergeValues(inputs: IDynamicValue[], defaultValues: IDynamicValue[]): IDynamicValue[];
|
|
5739
5739
|
executeEntity(entity: ExecutableEntityState, inputs?: IDynamicValue[], client?: IExecutionClient): Promise<IExecutionResult>;
|
|
5740
5740
|
storeLastExecutionValues(result: IExecutionResult): void;
|
|
@@ -7520,7 +7520,7 @@ export declare class FunctionDeclarationState extends UserManagedVersionedState
|
|
|
7520
7520
|
createInternalCall(changeSet: (ChangeSet | null) | undefined, parent: VariableState, overrides?: Partial<IInternalCallTransfer>): InternalCallState;
|
|
7521
7521
|
addReturnStatement(statement: ReturnStatementState): FunctionDeclarationState;
|
|
7522
7522
|
removeReturnStatement(statement: ReturnStatementState): FunctionDeclarationState;
|
|
7523
|
-
|
|
7523
|
+
getUniqueOutputProperties(): PropertyState[];
|
|
7524
7524
|
removeUnrecognizedInputs(changeSet?: ChangeSet | null): IChangeSet<FunctionDeclarationState>;
|
|
7525
7525
|
syncInputs(changeSet?: ChangeSet | null): IChangeSet<FunctionDeclarationState>;
|
|
7526
7526
|
}
|
|
@@ -13622,7 +13622,7 @@ export declare interface IExecutionResult {
|
|
|
13622
13622
|
value: ExecutionTerminationType;
|
|
13623
13623
|
entity: TestableEntityState;
|
|
13624
13624
|
error: IDynamicValue | null;
|
|
13625
|
-
|
|
13625
|
+
result: IDynamicValue | null;
|
|
13626
13626
|
}
|
|
13627
13627
|
|
|
13628
13628
|
export declare type IExtensionContext = IEditorContext | IProjectLogicContext | ICompilerContext;
|
|
@@ -14682,7 +14682,7 @@ export declare interface IPrimitiveEnumValueTransfer extends ILiteralValueTransf
|
|
|
14682
14682
|
|
|
14683
14683
|
export declare interface IPrimitiveExecutionResult {
|
|
14684
14684
|
value: ExecutionTerminationType;
|
|
14685
|
-
|
|
14685
|
+
result: any;
|
|
14686
14686
|
error: any | null;
|
|
14687
14687
|
}
|
|
14688
14688
|
|