add generation tests from escodegen
This commit is contained in:
4
test/fixtures/generation/basic/variable-declaration/variable-declaration.js
vendored
Normal file
4
test/fixtures/generation/basic/variable-declaration/variable-declaration.js
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
var fact5 = function fact(n){
|
||||
if (n <= 1) return 1
|
||||
return n * fact(n - 1)
|
||||
}(5)
|
||||
Reference in New Issue
Block a user