comment out tailCall transformer

This commit is contained in:
Sebastian McKenzie 2015-02-08 21:19:01 +11:00
parent 812d93553a
commit 97784c8cca

View File

@ -1,5 +1,6 @@
"use strict"; "use strict";
/*
var t = require("../../../types"); var t = require("../../../types");
function transformExpression(node, scope, state) { function transformExpression(node, scope, state) {
@ -84,8 +85,6 @@ var functionVisitor = {
exports.FunctionDeclaration = exports.FunctionDeclaration =
exports.FunctionExpression = function (node, parent, scope, file) { exports.FunctionExpression = function (node, parent, scope, file) {
return;
var tempId, helperRef; var tempId, helperRef;
var state = { var state = {
@ -116,3 +115,4 @@ exports.FunctionExpression = function (node, parent, scope, file) {
])); ]));
} }
}; };
*/