| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // This file contains various hacks needed to inform JSCompiler of various | 5 // This file contains various hacks needed to inform JSCompiler of various |
| 6 // QUnit-specific properties and methods. It is used only with JSCompiler to | 6 // QUnit-specific properties and methods. It is used only with JSCompiler to |
| 7 // verify the type-correctness of our code. | 7 // verify the type-correctness of our code. |
| 8 | 8 |
| 9 | 9 |
| 10 /** @type {Object} */ | 10 /** @type {Object} */ |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 /** | 93 /** |
| 94 * @param {string} desc | 94 * @param {string} desc |
| 95 * @param {QUnit.ModuleArgs=} opt_args= | 95 * @param {QUnit.ModuleArgs=} opt_args= |
| 96 */ | 96 */ |
| 97 QUnit.module = function(desc, opt_args) {}; | 97 QUnit.module = function(desc, opt_args) {}; |
| 98 | 98 |
| 99 /** | 99 /** |
| 100 * @param {string} desc | 100 * @param {string} desc |
| 101 * @param {function(QUnit.Assert)} f | 101 * @param {function(QUnit.Assert)} f |
| 102 */ | 102 */ |
| 103 QUnit.test = function(desc, f) {}; | 103 QUnit.test = function(desc, f) {}; |
| OLD | NEW |