2020-05-22 09:38:30 +02:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
class Expression {
|
|
|
|
/**
|
|
|
|
* @param {NoteSet} noteSet
|
|
|
|
* @param {object} searchContext
|
2020-05-23 10:25:22 +02:00
|
|
|
* @return {NoteSet}
|
2020-05-22 09:38:30 +02:00
|
|
|
*/
|
|
|
|
execute(noteSet, searchContext) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = Expression;
|