13 lines
231 B
JavaScript
Raw Normal View History

2020-05-22 09:38:30 +02:00
"use strict";
class Expression {
/**
* @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;