Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(722)

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/debugger_script_externs.js

Issue 1918323002: [DevTools] Simplified DebuggerScript._buildScopeObject (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/platform/v8_inspector/DebuggerScript.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/v8_inspector/debugger_script_externs.js
diff --git a/third_party/WebKit/Source/platform/v8_inspector/debugger_script_externs.js b/third_party/WebKit/Source/platform/v8_inspector/debugger_script_externs.js
index 25d07542792e920dcef9f86c509bd800928c5e88..21dcd74456cef4068aa4cc49481a2932ac050bbd 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/debugger_script_externs.js
+++ b/third_party/WebKit/Source/platform/v8_inspector/debugger_script_externs.js
@@ -367,16 +367,6 @@ Mirror.prototype.isIterator = function() {}
* @interface
* @extends {Mirror}
*/
-function ObjectMirror() {}
-
-/** @return {!Array<!PropertyMirror>} */
-ObjectMirror.prototype.properties = function() {}
-
-
-/**
- * @interface
- * @extends {ObjectMirror}
- */
function FunctionMirror () {}
/** @return {number} */
@@ -415,7 +405,7 @@ function UnresolvedFunctionMirror(value) {}
/**
* @interface
- * @extends {ObjectMirror}
+ * @extends {Mirror}
*/
function MapMirror () {}
@@ -428,7 +418,7 @@ MapMirror.prototype.entries = function(limit) {}
/**
* @interface
- * @extends {ObjectMirror}
+ * @extends {Mirror}
*/
function SetMirror () {}
@@ -441,7 +431,7 @@ SetMirror.prototype.values = function(limit) {}
/**
* @interface
- * @extends {ObjectMirror}
+ * @extends {Mirror}
*/
function IteratorMirror () {}
@@ -454,7 +444,7 @@ IteratorMirror.prototype.preview = function(limit) {}
/**
* @interface
- * @extends {ObjectMirror}
+ * @extends {Mirror}
*/
function GeneratorMirror () {}
@@ -472,23 +462,6 @@ GeneratorMirror.prototype.func = function() {}
* @interface
* @extends {Mirror}
*/
-function PropertyMirror()
-{
- /** @type {*} */
- this.value_;
-}
-
-/** @return {!Mirror} */
-PropertyMirror.prototype.value = function() {}
-
-/** @return {string} */
-PropertyMirror.prototype.name = function() {}
-
-
-/**
- * @interface
- * @extends {Mirror}
- */
function FrameMirror() {}
/**
« no previous file with comments | « third_party/WebKit/Source/platform/v8_inspector/DebuggerScript.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698