18 lines
426 B
JavaScript
Raw Normal View History

2020-05-22 09:38:30 +02:00
"use strict";
class Expression {
constructor() {
this.name = this.constructor.name; // for DEBUG mode to have expression name as part of dumped JSON
}
2020-05-22 09:38:30 +02:00
/**
* @param {NoteSet} inputNoteSet
* @param {object} executionContext
* @param {SearchContext} searchContext
2023-01-05 23:38:41 +01:00
* @returns {NoteSet}
2020-05-22 09:38:30 +02:00
*/
execute(inputNoteSet, executionContext, searchContext) {}
2020-05-22 09:38:30 +02:00
}
module.exports = Expression;