OLD | NEW |
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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 label:(string|undefined), enabled:(boolean|undefined), checked:(bo
olean|undefined), | 196 label:(string|undefined), enabled:(boolean|undefined), checked:(bo
olean|undefined), |
197 subItems:(!Array.<!DevToolsHost.ContextMenuDescriptor>|undefined)}
} */ | 197 subItems:(!Array.<!DevToolsHost.ContextMenuDescriptor>|undefined)}
} */ |
198 DevToolsHost.ContextMenuDescriptor; | 198 DevToolsHost.ContextMenuDescriptor; |
199 | 199 |
200 /** | 200 /** |
201 * @return {number} | 201 * @return {number} |
202 */ | 202 */ |
203 DevToolsHost.zoomFactor = function() { } | 203 DevToolsHost.zoomFactor = function() { } |
204 | 204 |
205 /** | 205 /** |
206 * @param {number} length | |
207 * @return {number} | |
208 */ | |
209 DevToolsHost.convertLengthForEmbedder = function(length) { } | |
210 | |
211 /** | |
212 * @param {string} origin | 206 * @param {string} origin |
213 * @param {string} script | 207 * @param {string} script |
214 */ | 208 */ |
215 DevToolsHost.setInjectedScriptForOrigin = function(origin, script) { } | 209 DevToolsHost.setInjectedScriptForOrigin = function(origin, script) { } |
216 | 210 |
217 /** | 211 /** |
218 * @param {string} text | 212 * @param {string} text |
219 */ | 213 */ |
220 DevToolsHost.copyText = function(text) { } | 214 DevToolsHost.copyText = function(text) { } |
221 | 215 |
(...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
692 * @extends {ESTree.Node} | 686 * @extends {ESTree.Node} |
693 * @constructor | 687 * @constructor |
694 */ | 688 */ |
695 ESTree.TemplateLiteralNode = function() | 689 ESTree.TemplateLiteralNode = function() |
696 { | 690 { |
697 /** @type {!Array.<!ESTree.Node>} */ | 691 /** @type {!Array.<!ESTree.Node>} */ |
698 this.quasis; | 692 this.quasis; |
699 /** @type {!Array.<!ESTree.Node>} */ | 693 /** @type {!Array.<!ESTree.Node>} */ |
700 this.expressions; | 694 this.expressions; |
701 } | 695 } |
OLD | NEW |