mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 02:29:04 +03:00
17 lines
528 B
TypeScript
17 lines
528 B
TypeScript
// @target: es2015
|
|
// @importHelpers: true
|
|
// @isolatedModules: true
|
|
|
|
// @filename: main.ts
|
|
|
|
export class S {
|
|
static #a = 1;
|
|
static #b() { this.#a = 42; }
|
|
static get #c() { return S.#b(); }
|
|
}
|
|
|
|
// @filename: tslib.d.ts
|
|
// these are pre-TS4.3 versions of emit helpers, which only supported private instance fields
|
|
export declare function __classPrivateFieldGet<T extends object, V>(receiver: T, state: any): V;
|
|
export declare function __classPrivateFieldSet<T extends object, V>(receiver: T, state: any, value: V): V;
|