mirror of
https://github.com/zadam/trilium.git
synced 2025-06-06 18:08:33 +02:00
31 lines
747 B
JavaScript
31 lines
747 B
JavaScript
"use strict";
|
|
|
|
const Expression = require('./expression');
|
|
|
|
class AndExp extends Expression {
|
|
static of(subExpressions) {
|
|
subExpressions = subExpressions.filter(exp => !!exp);
|
|
|
|
if (subExpressions.length === 1) {
|
|
return subExpressions[0];
|
|
} else if (subExpressions.length > 0) {
|
|
return new AndExp(subExpressions);
|
|
}
|
|
}
|
|
|
|
constructor(subExpressions) {
|
|
super();
|
|
this.subExpressions = subExpressions;
|
|
}
|
|
|
|
execute(inputNoteSet, executionContext) {
|
|
for (const subExpression of this.subExpressions) {
|
|
inputNoteSet = subExpression.execute(inputNoteSet, executionContext);
|
|
}
|
|
|
|
return inputNoteSet;
|
|
}
|
|
}
|
|
|
|
module.exports = AndExp;
|