mirror of
https://github.com/swc-project/swc.git
synced 2024-12-26 15:12:08 +03:00
59 lines
852 B
TypeScript
59 lines
852 B
TypeScript
// @allowJs: true
|
|
// @checkJs: true
|
|
// @declaration: true
|
|
// @emitDeclarationOnly: true
|
|
// @outDir: ./out
|
|
|
|
// @Filename: /a.js
|
|
class A {
|
|
/** @return {number} */
|
|
method() { throw new Error(); }
|
|
}
|
|
/** @implements {A} */
|
|
class B {
|
|
method() { return 0 }
|
|
}
|
|
|
|
/** @implements A */
|
|
class B2 {
|
|
/** @return {string} */
|
|
method() { return "" }
|
|
}
|
|
|
|
/** @implements {A} */
|
|
class B3 {
|
|
}
|
|
|
|
|
|
var Ns = {};
|
|
/** @implements {A} */
|
|
Ns.C1 = class {
|
|
method() { return 11; }
|
|
}
|
|
/** @implements {A} */
|
|
var C2 = class {
|
|
method() { return 12; }
|
|
}
|
|
var o = {
|
|
/** @implements {A} */
|
|
C3: class {
|
|
method() { return 13; }
|
|
}
|
|
}
|
|
class CC {
|
|
/** @implements {A} */
|
|
C4 = class {
|
|
method() {
|
|
return 14;
|
|
}
|
|
}
|
|
}
|
|
|
|
var C5;
|
|
/** @implements {A} */
|
|
Ns.C5 = C5 || class {
|
|
method() {
|
|
return 15;
|
|
}
|
|
}
|