mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
18 lines
425 B
JavaScript
18 lines
425 B
JavaScript
"use strict";
|
|
|
|
class Expression {
|
|
constructor() {
|
|
this.name = this.constructor.name; // for DEBUG mode to have expression name as part of dumped JSON
|
|
}
|
|
|
|
/**
|
|
* @param {NoteSet} inputNoteSet
|
|
* @param {object} executionContext
|
|
* @param {SearchContext} searchContext
|
|
* @return {NoteSet}
|
|
*/
|
|
execute(inputNoteSet, executionContext, searchContext) {}
|
|
}
|
|
|
|
module.exports = Expression;
|