mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 11:42:13 +03:00
18 lines
306 B
TypeScript
18 lines
306 B
TypeScript
|
// @noEmit: true
|
||
|
// @allowJs: true
|
||
|
// @checkJs: true
|
||
|
// @strict: true
|
||
|
// @Filename: a.js
|
||
|
|
||
|
// from bcryptjs
|
||
|
/** @param {function(...[*])} callback */
|
||
|
function g(callback) {
|
||
|
callback([1], [2], [3])
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @type {!function(...number):string}
|
||
|
* @inner
|
||
|
*/
|
||
|
var stringFromCharCode = String.fromCharCode;
|