Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
deps: backport 2ad2237 from v8 upstream
Browse files Browse the repository at this point in the history
Original commit message:

Fix Unhandled ReferenceError in debug-debugger.js

This fixes following exception in Sky on attempt to set a breakpoint
"Unhandled: Uncaught ReferenceError: break_point is not defined"
I think this happens in Sky but not in Chrome because Sky scripts are executed in strict mode.

BUG=None
LOG=N
[email protected]

Review URL: https://codereview.chromium.org/741683002

Cr-Commit-Position: refs/heads/master@{#25415}
  • Loading branch information
Julien Gilli authored and tjfontaine committed Dec 17, 2014
1 parent bddea12 commit 0ff51c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/v8/src/debug-debugger.js
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ ScriptBreakPoint.prototype.set = function (script) {
if (position === null) return;

// Create a break point object and set the break point.
break_point = MakeBreakPoint(position, this);
var break_point = MakeBreakPoint(position, this);
break_point.setIgnoreCount(this.ignoreCount());
var actual_position = %SetScriptBreakPoint(script, position, break_point);
if (IS_UNDEFINED(actual_position)) {
Expand Down

0 comments on commit 0ff51c6

Please sign in to comment.