14 lines
325 B
JavaScript
14 lines
325 B
JavaScript
import * as t from "../../types";
|
|
|
|
export default class IgnoreFormatter {
|
|
exportDeclaration(node, nodes) {
|
|
var declar = t.toStatement(node.declaration, true);
|
|
if (declar) nodes.push(t.inherits(declar, node));
|
|
}
|
|
|
|
exportAllDeclaration() {}
|
|
importDeclaration() {}
|
|
importSpecifier() {}
|
|
exportSpecifier() {}
|
|
}
|