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; |
}; |
/** |