| Index: scripts/abprewrite.js |
| diff --git a/scripts/abprewrite.js b/scripts/abprewrite.js |
| index a981fd333244655113721dc00bf1794b3e177a35..69f8b37507c1220ba3b27516e7d37c364433db2c 100644 |
| --- a/scripts/abprewrite.js |
| +++ b/scripts/abprewrite.js |
| @@ -19,7 +19,6 @@ let options = { |
| brace_style: "expand", |
| source_repo: "" |
| }; |
| -let global = this; |
| function Literal(value) |
| { |
| @@ -436,7 +435,7 @@ function modifyFunctionDeclaration(ast) |
| return modifyFunctionExpression(ast); |
| } |
| -function modifyArrowExpression(ast) |
| +function modifyArrowFunctionExpression(ast) |
| { |
| if (ast.body.type != "BlockStatement") { |
| // Convert expressions to block statements. |