mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 19:22:32 +03:00
18 lines
361 B
TypeScript
18 lines
361 B
TypeScript
|
// @target: es5
|
|||
|
class C {
|
|||
|
constructor(t: boolean, z: string, x: number, y = "hello") { }
|
|||
|
|
|||
|
public foo(x: string, t = false) { }
|
|||
|
public foo1(x: string, t = false, ...rest) { }
|
|||
|
public bar(t = false) { }
|
|||
|
public boo(t = false, ...rest) { }
|
|||
|
}
|
|||
|
|
|||
|
class D {
|
|||
|
constructor(y = "hello") { }
|
|||
|
}
|
|||
|
|
|||
|
class E {
|
|||
|
constructor(y = "hello", ...rest) { }
|
|||
|
}
|