1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | 1 1 1 1 1 1 20 20 1 | module.exports = IgnoreFormatter; var t = require("../../types"); function IgnoreFormatter() { } IgnoreFormatter.prototype.import = function () { }; IgnoreFormatter.prototype.importSpecifier = function () { }; IgnoreFormatter.prototype.export = function (node, nodes) { var declar = t.toStatement(node.declaration, true); if (declar) nodes.push(t.inherits(declar, node)); }; IgnoreFormatter.prototype.exportSpecifier = function () { }; |