Skip to content

Commit a788db3

Browse files
author
Brian Hulette
committed
Cleanup
1 parent a9fff89 commit a788db3

File tree

2 files changed

+4
-13
lines changed

2 files changed

+4
-13
lines changed

js/perf/index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
// under the License.
1717

1818
// Use the ES5 UMD target as perf baseline
19-
const { col, DataFrame, Table, readVectors } = require('../targets/es5/umd');
20-
// const { col, DataFrame, Table, readVectors } = require('../targets/es5/cjs');
21-
// const { col, DataFrame, Table, readVectors } = require('../targets/es2015/umd');
22-
// const { col, DataFrame, Table, readVectors } = require('../targets/es2015/cjs');
19+
// const { col, Table, readVectors } = require('../targets/es5/umd');
20+
// const { col, Table, readVectors } = require('../targets/es5/cjs');
21+
// const { col, Table, readVectors } = require('../targets/es2015/umd');
22+
const { col, Table, readVectors } = require('../targets/es2015/cjs');
2323

2424
const config = require('./config');
2525
const Benchmark = require('benchmark');

js/src/predicate.ts

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -180,15 +180,6 @@ class GTeq extends ComparisonPredicate {
180180
const col_func = col.bind(cols);
181181
return (idx: number, cols: Vector[]) => col_func(idx, cols) >= lit.v;
182182
}
183-
//eval(idx: number, cols: Vector[]) {
184-
// return this.left.eval(idx, cols) >= this.right.eval(idx, cols);
185-
//}
186-
//emitString() {
187-
// return `${this.left.emitString()} >= ${this.right.emitString()}`
188-
//}
189-
//createDictionaryEval(schema, lit: Literal, col: Col): (idx: number, cols: Vector[]) => boolean {
190-
// return this.eval;
191-
//}
192183
}
193184

194185
export function lit(n: number): Value<any> { return new Literal(n); }

0 commit comments

Comments
 (0)