@elyx-code/project-logic-tree 0.0.6974 → 0.0.6977
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 +234 -224
- package/dist/index.d.ts +9 -7
- package/dist/index.js +30635 -30377
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -13230,34 +13230,36 @@ export declare enum BaseValueDescriptorIds {
|
|
|
13230
13230
|
skipNotify?: boolean;
|
|
13231
13231
|
}) => Promise<void> | void);
|
|
13232
13232
|
constructor(project: ProjectState, entities: TestableEntityState[], entryPoint: TestableEntityState, parentExecution?: Execution | null, parentContext?: IExecutionInstanceParentContext);
|
|
13233
|
+
get valueResolutionContext(): IValueResolutionContext;
|
|
13233
13234
|
get rootExecution(): Execution;
|
|
13234
13235
|
get rootState(): ExecutionState;
|
|
13235
13236
|
isStopped(): boolean;
|
|
13236
13237
|
isPaused(): boolean;
|
|
13237
13238
|
checkStateAndPause(): Promise<void>;
|
|
13238
|
-
get valueResolutionContext(): IValueResolutionContext;
|
|
13239
13239
|
skip(entity: TestableEntityState): void;
|
|
13240
13240
|
schedule(entity: TestableEntityState, inputs?: IDynamicValue[], client?: IExecutionClient): Promise<IExecutionResult | null>;
|
|
13241
13241
|
mergeExernalValuesWithInternalInputs(externalValues: IDynamicValue[], entity: EntityState): IDynamicValue[];
|
|
13242
13242
|
inheritValuesFromContext(context: IValueResolutionContext): void;
|
|
13243
13243
|
executeInternalCall(entity: InternalCallState, inputs: IDynamicValue[], project: ProjectState, client?: IExecutionClient): Promise<IExecutionResult>;
|
|
13244
|
-
static executeOperation(operation: OperationState, inputs: IDynamicValue[], project: ProjectState): Promise<IExecutionResult>;
|
|
13244
|
+
static executeOperation(operation: OperationState, inputs: IDynamicValue[], project: ProjectState, execution?: Execution): Promise<IExecutionResult>;
|
|
13245
13245
|
executeSearch(entity: SearchState, inputs: IDynamicValue[], project: ProjectState): Promise<IExecutionResult>;
|
|
13246
13246
|
executeLoop(loop: LoopState, inputs: IDynamicValue[], project: ProjectState, client?: IExecutionClient): Promise<IExecutionResult>;
|
|
13247
13247
|
executeFunctionCall(functionCall: FunctionCallState, inputs: IDynamicValue[], project: ProjectState, client?: IExecutionClient): Promise<IExecutionResult>;
|
|
13248
13248
|
executeCondition(condition: ConditionState, inputs: IDynamicValue[]): Promise<IExecutionResult>;
|
|
13249
13249
|
executeDetachedFullFunctionDeclarationLogic(functionDeclaration: FunctionDeclarationState, inputs: IDynamicValue[], project: ProjectState, client?: IExecutionClient): Promise<IExecutionResult>;
|
|
13250
13250
|
executeFullFunctionDeclarationLogic(functionDeclaration: FunctionDeclarationState, inputs: IDynamicValue[], client?: IExecutionClient): Promise<IExecutionResult>;
|
|
13251
|
-
static executeEntryPointEntity(entryPointEntity: EntryPointEntityState,
|
|
13252
|
-
executeReturnStatement(entity: ReturnStatementState,
|
|
13253
|
-
executeContinueStatement(entity: ContinueStatementState,
|
|
13254
|
-
executeBreakStatement(entity: BreakStatementState,
|
|
13255
|
-
executeVariable(entity: VariableState,
|
|
13251
|
+
static executeEntryPointEntity(entryPointEntity: EntryPointEntityState, inputs: IDynamicValue[], execution?: Execution): Promise<IExecutionResult>;
|
|
13252
|
+
executeReturnStatement(entity: ReturnStatementState, inputs: IDynamicValue[]): Promise<IExecutionResult>;
|
|
13253
|
+
executeContinueStatement(entity: ContinueStatementState, inputs: IDynamicValue[]): Promise<IExecutionResult>;
|
|
13254
|
+
executeBreakStatement(entity: BreakStatementState, inputs: IDynamicValue[]): Promise<IExecutionResult>;
|
|
13255
|
+
executeVariable(entity: VariableState, inputs: IDynamicValue[]): Promise<IExecutionResult>;
|
|
13256
13256
|
mergeValues(inputs: IDynamicValue[], defaultValues: IDynamicValue[]): IDynamicValue[];
|
|
13257
13257
|
executeEntity(entity: ExecutableEntityState, inputs?: IDynamicValue[], client?: IExecutionClient): Promise<IExecutionResult>;
|
|
13258
13258
|
storeLastExecutionValues(result: IExecutionResult): void;
|
|
13259
13259
|
executeBranch(localEntryPoint: TestableEntityState, client?: IExecutionClient, values?: IDynamicValue[]): Promise<IExecutionResult | null>;
|
|
13260
13260
|
execute(client?: IExecutionClient, values?: IDynamicValue[]): Promise<IExecutionResult>;
|
|
13261
|
+
getExecutionLevels(): string;
|
|
13262
|
+
logBeforeExecution(methodName: string, entity: EntityState, inputs: IDynamicValue[]): void;
|
|
13261
13263
|
addEntity(entity: TestableEntityState): void;
|
|
13262
13264
|
addEntityAsync(entity: TestableEntityState, options?: YieldOptions & {
|
|
13263
13265
|
skipValidate?: boolean;
|