| 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 527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 538 window.dispatchStandaloneTestRunnerMessages; | 538 window.dispatchStandaloneTestRunnerMessages; |
| 539 | 539 |
| 540 // FIXME: This should be removed once transpilation is not required for closure
compiler ES6 | 540 // FIXME: This should be removed once transpilation is not required for closure
compiler ES6 |
| 541 /** | 541 /** |
| 542 * @param {number} count | 542 * @param {number} count |
| 543 * @return {string} | 543 * @return {string} |
| 544 */ | 544 */ |
| 545 String.prototype.repeat = function(count) {} | 545 String.prototype.repeat = function(count) {} |
| 546 | 546 |
| 547 /** | 547 /** |
| 548 * @param {string} other |
| 549 * @return {boolean} |
| 550 */ |
| 551 String.prototype.includes = function(other) {} |
| 552 |
| 553 /** |
| 548 * @param {*} obj | 554 * @param {*} obj |
| 549 * @return {boolean} | 555 * @return {boolean} |
| 550 */ | 556 */ |
| 551 ArrayBuffer.isView = function(obj) { } | 557 ArrayBuffer.isView = function(obj) { } |
| 552 | 558 |
| 553 /** | 559 /** |
| 554 * @param {Array.<Object>} keyframes | 560 * @param {Array.<Object>} keyframes |
| 555 * @param {number|Object} timing | 561 * @param {number|Object} timing |
| 556 * @return {Object} | 562 * @return {Object} |
| 557 */ | 563 */ |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 644 * @extends {ESTree.Node} | 650 * @extends {ESTree.Node} |
| 645 * @constructor | 651 * @constructor |
| 646 */ | 652 */ |
| 647 ESTree.TemplateLiteralNode = function() | 653 ESTree.TemplateLiteralNode = function() |
| 648 { | 654 { |
| 649 /** @type {!Array.<!ESTree.Node>} */ | 655 /** @type {!Array.<!ESTree.Node>} */ |
| 650 this.quasis; | 656 this.quasis; |
| 651 /** @type {!Array.<!ESTree.Node>} */ | 657 /** @type {!Array.<!ESTree.Node>} */ |
| 652 this.expressions; | 658 this.expressions; |
| 653 } | 659 } |
| OLD | NEW |