adaptive-expressions
Version:
Common Expression Language
54 lines (48 loc) • 1.87 kB
text/typescript
/**
* @module adaptive-expressions
*/
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
import { Expression } from '../expression';
import { ExpressionEvaluator, ValueWithError } from '../expressionEvaluator';
import { ExpressionType } from '../expressionType';
import { InternalFunctionUtils } from '../functionUtils.internal';
import { MemoryInterface } from '../memory/memoryInterface';
import { Options } from '../options';
import { ReturnType } from '../returnType';
/**
* Determines whether all elements of a sequence satisfy a condition.
*/
export class All extends ExpressionEvaluator {
/**
* Initializes a new instance of the [All](xref:adaptive-expressions.All) class.
*/
constructor() {
super(ExpressionType.All, All.evaluator, ReturnType.Boolean, InternalFunctionUtils.ValidateLambdaExpression);
}
/**
* @private
*/
private static evaluator(expression: Expression, state: MemoryInterface, options: Options): ValueWithError {
let result = true;
const { value: instance, error: childrenError } = expression.children[0].tryEvaluate(state, options);
let error = childrenError;
if (!error) {
const list = InternalFunctionUtils.convertToList(instance);
if (!list) {
error = `${expression.children[0]} is not a collection or structure object to run Any`;
} else {
InternalFunctionUtils.lambdaEvaluator(expression, state, options, list, (currentItem, r, e) => {
if (e || !InternalFunctionUtils.isLogicTrue(r)) {
result = false;
return true;
}
return false;
});
}
}
return { value: result, error };
}
}