Code coverage report for 6to5/transformers/arrow-functions.js

Statements: 100% (7 / 7)      Branches: 100% (0 / 0)      Functions: 100% (1 / 1)      Lines: 100% (7 / 7)      Ignored: none     

All files » 6to5/transformers/ » arrow-functions.js
1 2 3 4 5 6 7 8 9 10 11 121   1 21   21 21 21   21    
var util = require("../util");
 
exports.ArrowFunctionExpression = function (node) {
  util.ensureBlock(node);
 
  node._aliasFunction = "arrows";
  node.expression = false;
  node.type = "FunctionExpression";
 
  return node;
};