| Index: Source/WebCore/bindings/v8/DebuggerScript.js
|
| ===================================================================
|
| --- Source/WebCore/bindings/v8/DebuggerScript.js (revision 95801)
|
| +++ Source/WebCore/bindings/v8/DebuggerScript.js (working copy)
|
| @@ -264,8 +264,8 @@
|
|
|
| return {
|
| "sourceID": sourceID,
|
| - "line": location.line,
|
| - "column": location.column,
|
| + "line": location ? location.line : 0,
|
| + "column": location ? location.column : 0,
|
| "functionName": functionName,
|
| "thisObject": thisObject,
|
| "scopeChain": scopeChain,
|
|
|