mirror of
https://github.com/swc-project/swc.git
synced 2024-12-04 19:46:22 +03:00
9 lines
124 B
TypeScript
9 lines
124 B
TypeScript
class T {
|
|
private throws: number[] = [];
|
|
m(): void {
|
|
console.log(this.throws.length);
|
|
}
|
|
}
|
|
|
|
new T().m();
|