make transformation tests compare output instead of ast

This commit is contained in:
Sebastian McKenzie
2014-11-03 17:52:15 +11:00
parent c963c30107
commit 171bcad870
172 changed files with 451 additions and 494 deletions

View File

@@ -5,18 +5,15 @@ var _classProps = function (child, staticProps, instanceProps) {
if (instanceProps) Object.defineProperties(child.prototype, instanceProps);
};
var Test = function() {
var Test = (function () {
var Test = function Test() {};
_classProps(Test, null, {
test: {
writable: true,
value: function() {
return 5 + 5;
}
_classProps(Test, null, { test: {
writable: true,
value: function () {
return 5 + 5;
}
});
} });
return Test;
}();
})();