| 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..b94f825d1071622697533ea0c810b082cf65928d 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,20 @@ 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;
|
| + /** @type {(string|undefined)} */
|
| + this.raw;
|
| + /** @type {(boolean|undefined)} */
|
| + this.computed;
|
| };
|
|
|
| /**
|
|
|