Remove obsolete code

This commit is contained in:
Daniel Tschinder 2017-02-18 12:30:46 +01:00 committed by GitHub
parent 7c62278dcd
commit 7e540cdcc9

View File

@ -2,14 +2,6 @@ import * as t from "babel-types";
import jsesc from "jsesc";
export function Identifier(node: Object) {
if (node.variance) {
if (node.variance.kind === "plus") {
this.token("+");
} else if (node.variance.kind === "minus") {
this.token("-");
}
}
this.word(node.name);
}