mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 19:52:21 +03:00
31 lines
508 B
TypeScript
31 lines
508 B
TypeScript
// @allowJs: true
|
|
// @checkJs: true
|
|
// @noEmit: true
|
|
// @Filename: templateTagOnClasses.js
|
|
|
|
/**
|
|
* @template T
|
|
* @typedef {(t: T) => T} Id
|
|
*/
|
|
/** @template T */
|
|
class Foo {
|
|
/** @typedef {(t: T) => T} Id2 */
|
|
/** @param {T} x */
|
|
constructor (x) {
|
|
this.a = x
|
|
}
|
|
/**
|
|
*
|
|
* @param {T} x
|
|
* @param {Id<T>} y
|
|
* @param {Id2} alpha
|
|
* @return {T}
|
|
*/
|
|
foo(x, y, alpha) {
|
|
return alpha(y(x))
|
|
}
|
|
}
|
|
var f = new Foo(1)
|
|
var g = new Foo(false)
|
|
f.a = g.a
|