Code coverage report for 6to5/lib/6to5/transformation/modules/ignore.js

Statements: 100% (8 / 8)      Branches: 100% (2 / 2)      Functions: 100% (3 / 3)      Lines: 100% (7 / 7)      Ignored: none     

All files » 6to5/lib/6to5/transformation/modules/ » ignore.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 191   1   1       1 22 22     1          
module.exports = IgnoreFormatter;
 
var t = require("../../types");
 
function IgnoreFormatter() {
 
}
 
IgnoreFormatter.prototype.exportDeclaration = function (node, nodes) {
  var declar = t.toStatement(node.declaration, true);
  if (declar) nodes.push(t.inherits(declar, node));
};
 
IgnoreFormatter.prototype.importDeclaration =
IgnoreFormatter.prototype.importSpecifier =
IgnoreFormatter.prototype.exportSpecifier = function () {
 
};