| Index: Source/bindings/core/v8/DebuggerScript.js
|
| diff --git a/Source/bindings/core/v8/DebuggerScript.js b/Source/bindings/core/v8/DebuggerScript.js
|
| index cce9b45f847e6a4d804561bde71dae9576f662c0..b77ea992af0f0cd00b3142043e02773aaa4a04f7 100644
|
| --- a/Source/bindings/core/v8/DebuggerScript.js
|
| +++ b/Source/bindings/core/v8/DebuggerScript.js
|
| @@ -113,20 +113,6 @@ DebuggerScript.getCollectionEntries = function(object)
|
| }
|
| }
|
|
|
| -DebuggerScript.getInternalProperties = function(value)
|
| -{
|
| - var properties = ObjectMirror.GetInternalProperties(value);
|
| - var result = [];
|
| - for (var i = 0; i < properties.length; i++) {
|
| - var mirror = properties[i];
|
| - result.push({
|
| - name: mirror.name(),
|
| - value: mirror.value().value()
|
| - });
|
| - }
|
| - return result;
|
| -}
|
| -
|
| DebuggerScript.setFunctionVariableValue = function(functionValue, scopeIndex, variableName, newValue)
|
| {
|
| var mirror = MakeMirror(functionValue);
|
|
|