| Index: scripts/astDecompile.js |
| diff --git a/scripts/astDecompile.js b/scripts/astDecompile.js |
| index 3bf3bb0605285516b84896fa3b41b6c56d052b45..6b6ee4cc6937e520e4ad4dcb8f79de25b697cfd6 100644 |
| --- a/scripts/astDecompile.js |
| +++ b/scripts/astDecompile.js |
| @@ -247,7 +247,7 @@ function decompileFunctionExpression(ast) { |
| return decompileFunctionDeclaration(ast); |
| } |
| -function decompileArrowExpression(ast) { |
| +function decompileArrowFunctionExpression(ast) { |
| let str = "(" + ast.params.map(decompileAST).join(", ") + ")"; |
| str += " => " + decompileAST(ast.body); |
| return str; |