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

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

Issue 1912973002: [DevTools] JSONView parsing smarter (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 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 667 matching lines...) Expand 10 before | Expand all | Expand 10 after
678 /** @type {(!ESTree.Node|undefined)} */ 678 /** @type {(!ESTree.Node|undefined)} */
679 this.init; 679 this.init;
680 /** @type {(!Array.<!ESTree.Node>|undefined)} */ 680 /** @type {(!Array.<!ESTree.Node>|undefined)} */
681 this.params; 681 this.params;
682 /** @type {(string|undefined)} */ 682 /** @type {(string|undefined)} */
683 this.name; 683 this.name;
684 /** @type {(?ESTree.Node|undefined)} */ 684 /** @type {(?ESTree.Node|undefined)} */
685 this.id; 685 this.id;
686 /** @type {(number|undefined)} */ 686 /** @type {(number|undefined)} */
687 this.length; 687 this.length;
688 /** @type {(?ESTree.Node|undefined)} */
689 this.argument;
690 /** @type {(string|undefined)} */
691 this.operator;
688 } 692 }
689 693
690 /** 694 /**
691 * @extends {ESTree.Node} 695 * @extends {ESTree.Node}
692 * @constructor 696 * @constructor
693 */ 697 */
694 ESTree.TemplateLiteralNode = function() 698 ESTree.TemplateLiteralNode = function()
695 { 699 {
696 /** @type {!Array.<!ESTree.Node>} */ 700 /** @type {!Array.<!ESTree.Node>} */
697 this.quasis; 701 this.quasis;
698 /** @type {!Array.<!ESTree.Node>} */ 702 /** @type {!Array.<!ESTree.Node>} */
699 this.expressions; 703 this.expressions;
700 } 704 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698