17 lines
366 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
* @return {NoteSet}
2020-05-22 09:38:30 +02:00
*/
execute(inputNoteSet, executionContext) {}
2020-05-22 09:38:30 +02:00
}
module.exports = Expression;