Skip to content

Commit

Permalink
Fix rebase errors
Browse files Browse the repository at this point in the history
  • Loading branch information
invokesus committed Aug 1, 2018
1 parent ea53045 commit e7ebd7a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/compile/data/calculate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {getDependentFields} from './expressions';
* We don't know what a calculate node depends on so we should never move it beyond anything that produces fields.
*/

export class CalculateNode extends DataFlowNode {
export class CalculateNode extends TransformNode {
private _dependentFields: StringSet;

public clone() {
Expand Down
2 changes: 1 addition & 1 deletion src/compile/data/filter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import {expression, Predicate} from '../../predicate';
import {duplicate, hash, StringSet} from '../../util';
import {VgFilterTransform} from '../../vega.schema';
import {Model} from '../model';
import {getDependentFields} from './expressions';
import {DataFlowNode, TransformNode} from './dataflow';
import {getDependentFields} from './expressions';

export class FilterNode extends TransformNode {
private expr: string;
Expand Down

0 comments on commit e7ebd7a

Please sign in to comment.