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

Statements: 100% (10 / 10)      Branches: 100% (2 / 2)      Functions: 100% (5 / 5)      Lines: 100% (9 / 9)      Ignored: none     

All files » 6to5/transformation/modules/ » ignore.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 251   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 () {
 
};