diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-02-03 08:22:29 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-02-03 08:23:12 +0100 |
commit | d432e068a21c815d5d5e7bcbc1cc8c6e77a7d1e0 (patch) | |
tree | 98d5420a48042e47b0d9971d30774b8c82d11486 /js/src/jit-test/tests/debug/Script-sourceStart-04.js | |
parent | 278eda6a09e9177678d57a2da2b6a8ddcb503b1c (diff) | |
parent | ae4af7b7e598b4fec037254a1fd03ac3495695a4 (diff) | |
download | UXP-d432e068a21c815d5d5e7bcbc1cc8c6e77a7d1e0.tar UXP-d432e068a21c815d5d5e7bcbc1cc8c6e77a7d1e0.tar.gz UXP-d432e068a21c815d5d5e7bcbc1cc8c6e77a7d1e0.tar.lz UXP-d432e068a21c815d5d5e7bcbc1cc8c6e77a7d1e0.tar.xz UXP-d432e068a21c815d5d5e7bcbc1cc8c6e77a7d1e0.zip |
Stage 1: Fix #960.
Diffstat (limited to 'js/src/jit-test/tests/debug/Script-sourceStart-04.js')
-rw-r--r-- | js/src/jit-test/tests/debug/Script-sourceStart-04.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/src/jit-test/tests/debug/Script-sourceStart-04.js b/js/src/jit-test/tests/debug/Script-sourceStart-04.js index 2aa382b7b..4546818e4 100644 --- a/js/src/jit-test/tests/debug/Script-sourceStart-04.js +++ b/js/src/jit-test/tests/debug/Script-sourceStart-04.js @@ -20,6 +20,6 @@ function test(string, range) { } test("eval('2 * 3')", [0, 5]); -test("new Function('2 * 3')", [0, 12]); -test("new Function('x', 'x * x')", [0, 13]); +test("new Function('2 * 3')", [0, 31]); +test("new Function('x', 'x * x')", [0, 32]); assertEq(count, 6); |