fix linting errors

This commit is contained in:
Sebastian McKenzie 2015-06-05 08:10:22 +01:00
parent c75a3c68e5
commit e2ca03f92d
3 changed files with 3 additions and 2 deletions

View File

@ -1,3 +1,5 @@
/* eslint no-unused-vars: 0 */
import * as t from "../../../types"; import * as t from "../../../types";
export var metadata = { export var metadata = {

View File

@ -1,6 +1,5 @@
import traverse from "../../../traversal"; import traverse from "../../../traversal";
import parse from "../../../helpers/parse"; import parse from "../../../helpers/parse";
import * as t from "../../../types";
export var metadata = { export var metadata = {
group: "builtin-pre", group: "builtin-pre",

View File

@ -18,7 +18,7 @@ export default class Binding {
* Description * Description
*/ */
deoptValue(value) { deoptValue() {
this.clearValue(); this.clearValue();
this.deoptValue = true; this.deoptValue = true;
} }