Remove "Node" class from generator, just use module

The Node class was unused as a class
This commit is contained in:
Jordan Klassen
2016-02-03 16:51:10 -08:00
parent 6bb7eb0c78
commit 8fd329a2f4
3 changed files with 39 additions and 65 deletions

View File

@@ -1,6 +1,6 @@
import repeating from "repeating";
import Buffer from "./buffer";
import n from "./node";
import * as n from "./node";
import * as t from "babel-types";
export default class Printer extends Buffer {