2014-09-25 09:33:40 +00:00
|
|
|
// Copyright 2014 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2015-12-15 09:53:55 +00:00
|
|
|
// Flags: --expose-debug-as debug --debug-eval-readonly-locals
|
2014-09-25 09:33:40 +00:00
|
|
|
|
|
|
|
Debug = debug.Debug;
|
|
|
|
|
|
|
|
var step = 0;
|
|
|
|
var exception = null;
|
|
|
|
|
|
|
|
function listener(event, exec_state, event_data, data) {
|
|
|
|
if (event != Debug.DebugEvent.Break) return;
|
|
|
|
try {
|
|
|
|
if (step == 0) {
|
|
|
|
assertEquals("error", exec_state.frame(0).evaluate("e").value());
|
2015-12-15 09:53:55 +00:00
|
|
|
exec_state.frame(0).evaluate("write_0('foo')");
|
|
|
|
exec_state.frame(0).evaluate("write_1('modified')");
|
2014-09-25 09:33:40 +00:00
|
|
|
} else {
|
Revert of Ship ES2015 sloppy-mode function hoisting, let, class (patchset #7 id:120001 of https://codereview.chromium.org/1551443002/ )
Reason for revert:
Causes frequent crashes in Canary: chromium:537816
Original issue's description:
> Ship ES2015 sloppy-mode function hoisting, let, class
>
> This patch doesn't ship all features of ES2015 variable/scoping
> changes, notably omitting the removal of legacy const. I think
> function hoisting, let and class in sloppy mode can stand to
> themselves as a package, and the legacy const change is much
> riskier and more likely to be reverted, so my intention is to
> pursue those as a separate, follow-on patch.
>
> R=adamk@chromium.org
> BUG=v8:4285,v8:3305
> LOG=Y
> CQ_INCLUDE_TRYBOTS=tryserver.chromium.linux:linux_chromium_rel_ng;tryserver.blink:linux_blink_rel
>
> Committed: https://crrev.com/fcff8588a5a01587643d6c2507c7b882c78a2957
> Cr-Commit-Position: refs/heads/master@{#33133}
TBR=adamk@chromium.org
# Not skipping CQ checks because original CL landed more than 1 days ago.
BUG=v8:4285,v8:3305,chromium:537816
LOG=Y
Review URL: https://codereview.chromium.org/1565263002
Cr-Commit-Position: refs/heads/master@{#33162}
2016-01-07 20:22:18 +00:00
|
|
|
assertEquals("foo", exec_state.frame(0).evaluate("e").value());
|
2015-12-15 09:53:55 +00:00
|
|
|
exec_state.frame(0).evaluate("write_2('bar')");
|
2014-09-25 09:33:40 +00:00
|
|
|
}
|
|
|
|
step++;
|
|
|
|
} catch (e) {
|
|
|
|
print(e + e.stack);
|
|
|
|
exception = e;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Debug.setListener(listener);
|
|
|
|
|
|
|
|
function f(e, x) {
|
|
|
|
try {
|
|
|
|
throw "error";
|
|
|
|
} catch(e) {
|
Revert of Ship ES2015 sloppy-mode function hoisting, let, class (patchset #7 id:120001 of https://codereview.chromium.org/1551443002/ )
Reason for revert:
Causes frequent crashes in Canary: chromium:537816
Original issue's description:
> Ship ES2015 sloppy-mode function hoisting, let, class
>
> This patch doesn't ship all features of ES2015 variable/scoping
> changes, notably omitting the removal of legacy const. I think
> function hoisting, let and class in sloppy mode can stand to
> themselves as a package, and the legacy const change is much
> riskier and more likely to be reverted, so my intention is to
> pursue those as a separate, follow-on patch.
>
> R=adamk@chromium.org
> BUG=v8:4285,v8:3305
> LOG=Y
> CQ_INCLUDE_TRYBOTS=tryserver.chromium.linux:linux_chromium_rel_ng;tryserver.blink:linux_blink_rel
>
> Committed: https://crrev.com/fcff8588a5a01587643d6c2507c7b882c78a2957
> Cr-Commit-Position: refs/heads/master@{#33133}
TBR=adamk@chromium.org
# Not skipping CQ checks because original CL landed more than 1 days ago.
BUG=v8:4285,v8:3305,chromium:537816
LOG=Y
Review URL: https://codereview.chromium.org/1565263002
Cr-Commit-Position: refs/heads/master@{#33162}
2016-01-07 20:22:18 +00:00
|
|
|
// 'e' and 'x' bind to the argument due to hoisting
|
2015-12-15 09:53:55 +00:00
|
|
|
function write_0(v) { e = v }
|
|
|
|
function write_1(v) { x = v }
|
2014-09-25 09:33:40 +00:00
|
|
|
debugger;
|
Revert of Ship ES2015 sloppy-mode function hoisting, let, class (patchset #7 id:120001 of https://codereview.chromium.org/1551443002/ )
Reason for revert:
Causes frequent crashes in Canary: chromium:537816
Original issue's description:
> Ship ES2015 sloppy-mode function hoisting, let, class
>
> This patch doesn't ship all features of ES2015 variable/scoping
> changes, notably omitting the removal of legacy const. I think
> function hoisting, let and class in sloppy mode can stand to
> themselves as a package, and the legacy const change is much
> riskier and more likely to be reverted, so my intention is to
> pursue those as a separate, follow-on patch.
>
> R=adamk@chromium.org
> BUG=v8:4285,v8:3305
> LOG=Y
> CQ_INCLUDE_TRYBOTS=tryserver.chromium.linux:linux_chromium_rel_ng;tryserver.blink:linux_blink_rel
>
> Committed: https://crrev.com/fcff8588a5a01587643d6c2507c7b882c78a2957
> Cr-Commit-Position: refs/heads/master@{#33133}
TBR=adamk@chromium.org
# Not skipping CQ checks because original CL landed more than 1 days ago.
BUG=v8:4285,v8:3305,chromium:537816
LOG=Y
Review URL: https://codereview.chromium.org/1565263002
Cr-Commit-Position: refs/heads/master@{#33162}
2016-01-07 20:22:18 +00:00
|
|
|
assertEquals("error", e);
|
2014-09-25 09:33:40 +00:00
|
|
|
}
|
2015-12-15 09:53:55 +00:00
|
|
|
function write_2(v) { e = v }
|
2014-09-25 09:33:40 +00:00
|
|
|
debugger;
|
|
|
|
assertEquals("bar", e);
|
|
|
|
assertEquals("modified", x);
|
|
|
|
}
|
|
|
|
|
|
|
|
f("argument")
|
|
|
|
assertNull(exception);
|
|
|
|
assertEquals(2, step);
|