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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/externs.js

Issue 1763193002: [DevTools] Fix more frontend compiler errors (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@caseq-patch
Patch Set: Created 4 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 676 matching lines...) Expand 10 before | Expand all | Expand 10 after
687 /** @type {(!Array.<!ESTree.Node>|undefined)} */ 687 /** @type {(!Array.<!ESTree.Node>|undefined)} */
688 this.declarations; 688 this.declarations;
689 /** @type {(!Array.<!ESTree.Node>|undefined)} */ 689 /** @type {(!Array.<!ESTree.Node>|undefined)} */
690 this.properties; 690 this.properties;
691 /** @type {(!ESTree.Node|undefined)} */ 691 /** @type {(!ESTree.Node|undefined)} */
692 this.init; 692 this.init;
693 /** @type {(!Array.<!ESTree.Node>|undefined)} */ 693 /** @type {(!Array.<!ESTree.Node>|undefined)} */
694 this.params; 694 this.params;
695 /** @type {(string|undefined)} */ 695 /** @type {(string|undefined)} */
696 this.name; 696 this.name;
697 /** @type {(!Array.<!ESTree.Node>|undefined)} */ 697 /** @type {(?ESTree.Node|undefined)} */
698 this.id; 698 this.id;
699 } 699 }
700 700
701 /** 701 /**
702 * @extends {ESTree.Node} 702 * @extends {ESTree.Node}
703 * @constructor 703 * @constructor
704 */ 704 */
705 ESTree.TemplateLiteralNode = function() 705 ESTree.TemplateLiteralNode = function()
706 { 706 {
707 /** @type {!Array.<!ESTree.Node>} */ 707 /** @type {!Array.<!ESTree.Node>} */
708 this.quasis; 708 this.quasis;
709 /** @type {!Array.<!ESTree.Node>} */ 709 /** @type {!Array.<!ESTree.Node>} */
710 this.expressions; 710 this.expressions;
711 } 711 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698