add generation tests from escodegen

This commit is contained in:
Sebastian McKenzie
2014-10-31 11:35:57 +11:00
parent 7c84af2ba8
commit 9c7c385ee8
97 changed files with 1200 additions and 6 deletions

View File

@@ -0,0 +1,5 @@
var fact5 = function fact(n) {
if (n <= 1)
return 1;
return n * fact(n - 1);
}(5);