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

Unified Diff: third_party/WebKit/Source/devtools/front_end/externs.js

Issue 2770123002: DevTools: produce javascript outline for javascript classess (Closed)
Patch Set: missing build files Created 3 years, 9 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
Index: third_party/WebKit/Source/devtools/front_end/externs.js
diff --git a/third_party/WebKit/Source/devtools/front_end/externs.js b/third_party/WebKit/Source/devtools/front_end/externs.js
index f6dc995f9781198520cdf6324071ef397f28ee24..4101d59aac20079421269a3552293a61cc1bde37 100644
--- a/third_party/WebKit/Source/devtools/front_end/externs.js
+++ b/third_party/WebKit/Source/devtools/front_end/externs.js
@@ -640,6 +640,13 @@ var acorn = {
/**
* @param {string} text
* @param {Object.<string, boolean>} options
+ * @return {!ESTree.Node}
+ */
+ parse_dammit: function(text, options) {},
+
+ /**
+ * @param {string} text
+ * @param {Object.<string, boolean>} options
* @return {!Acorn.Tokenizer}
*/
tokenizer: function(text, options) {},
@@ -722,6 +729,16 @@ ESTree.Node = function() {
this.argument;
/** @type {(string|undefined)} */
this.operator;
+ /** @type {(!ESTree.Node|undefined)} */
+ this.right;
+ /** @type {(!ESTree.Node|undefined)} */
+ this.left;
+ /** @type {(string|undefined)} */
+ this.kind;
+ /** @type {(!ESTree.Node|undefined)} */
+ this.property;
+ /** @type {(!ESTree.Node|undefined)} */
+ this.object;
};
/**

Powered by Google App Engine
This is Rietveld 408576698