diff options
Diffstat (limited to 'test/script/basic/es6/const-redeclare-extra.js.EXPECTED')
-rw-r--r-- | test/script/basic/es6/const-redeclare-extra.js.EXPECTED | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/script/basic/es6/const-redeclare-extra.js.EXPECTED b/test/script/basic/es6/const-redeclare-extra.js.EXPECTED index 754a75c6..06af782e 100644 --- a/test/script/basic/es6/const-redeclare-extra.js.EXPECTED +++ b/test/script/basic/es6/const-redeclare-extra.js.EXPECTED @@ -1,9 +1,9 @@ SyntaxError: test/script/basic/es6/const-redeclare-extra.js#36:8<eval>:3:8 Variable "x" has already been declared var x = {}; ^ -SyntaxError: test/script/basic/es6/const-redeclare-extra.js#36:8<eval>:2:8 Variable "x" has already been declared - var x = 2; - ^ -SyntaxError: test/script/basic/es6/const-redeclare-extra.js#36:8<eval>:2:13 Variable "x" has already been declared - function x () {} - ^ +SyntaxError: test/script/basic/es6/const-redeclare-extra.js#36:8<eval>:3:10 Variable "x" has already been declared + const x = {}; + ^ +SyntaxError: test/script/basic/es6/const-redeclare-extra.js#36:8<eval>:3:10 Variable "x" has already been declared + const x = 5; + ^ |