mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
18 lines
373 B
TypeScript
18 lines
373 B
TypeScript
// @noEmit: true
|
|
// @allowJs: true
|
|
// @checkJs: true
|
|
// @Filename: Compilation.js
|
|
// from webpack/lib/Compilation.js and filed at #26427
|
|
/** @param {{ [s: string]: number }} map */
|
|
function mappy(map) {}
|
|
|
|
export class C {
|
|
constructor() {
|
|
/** @type {{ [assetName: string]: number}} */
|
|
this.assets = {};
|
|
}
|
|
m() {
|
|
mappy(this.assets)
|
|
}
|
|
}
|