| Index: autotest/abprewrite_source.js |
| =================================================================== |
| --- a/autotest/abprewrite_source.js |
| +++ b/autotest/abprewrite_source.js |
| @@ -8,16 +8,17 @@ Cu.import("foo/bar.jsm"); |
| let {Timeline} = require("timeline"); |
| let {Utils} = require("utils"); |
| let {Filter, BlockingFilter} = require("filterClasses"); |
| let foo; |
| let bar = 2; |
| var bas; |
| +const FOO = "FOO"; |
| let [a, b] = foo(); |
| [a, b] = [1, 2]; |
| let {x: y} = foo(); |
| let {k1: v1, k2: v2} = foo(); |
| @@ -79,9 +80,9 @@ var a = function() |
| { |
| yield i; |
| } |
| }; |
| let x = (y) => y + 1; |
| x = y => y + 1; |
| x = (a, b) => this[a] + b; |
| -x = (a, b) => { return () => 1; } |
| +x = (a, b) => { return () => 1; } |