fixed some incorrect order by behavior, #1881

This commit is contained in:
zadam
2021-04-22 20:28:26 +02:00
parent 02988ed2b3
commit b5674223e5
6 changed files with 45 additions and 7 deletions

View File

@@ -0,0 +1,11 @@
"use strict";
const Expression = require('./expression');
class TrueExp extends Expression {
execute(inputNoteSet, executionContext) {
return inputNoteSet;
}
}
module.exports = TrueExp;