1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
//// [privateNameMethodCallExpression.ts]
class AA {
#method() { this.x = 10; };
#method2(a, ...b) {};
x = 1;
test() {
this.#method();
const func = this.#method;
func();
new this.#method();
const arr = [ 1, 2 ];
this.#method2(0, ...arr, 3);
const b = new this.#method2(0, ...arr, 3); //Error
const str = this.#method2`head${1}middle${2}tail`;
this.getInstance().#method2`test${1}and${2}`;
this.getInstance().#method2(0, ...arr, 3);
const b2 = new (this.getInstance().#method2)(0, ...arr, 3); //Error
const str2 = this.getInstance().#method2`head${1}middle${2}tail`;
}
getInstance() { return new AA(); }
}
//// [privateNameMethodCallExpression.js]
var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, state, kind, f) {
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
};
var _AA_instances, _AA_method, _AA_method2;
class AA {
constructor() {
_AA_instances.add(this);
this.x = 1;
}
;
;
test() {
var _a, _b, _c;
__classPrivateFieldGet(this, _AA_instances, "m", _AA_method).call(this);
const func = __classPrivateFieldGet(this, _AA_instances, "m", _AA_method);
func();
new (__classPrivateFieldGet(this, _AA_instances, "m", _AA_method))();
const arr = [1, 2];
__classPrivateFieldGet(this, _AA_instances, "m", _AA_method2).call(this, 0, ...arr, 3);
const b = new (__classPrivateFieldGet(this, _AA_instances, "m", _AA_method2))(0, ...arr, 3); //Error
const str = __classPrivateFieldGet(this, _AA_instances, "m", _AA_method2).bind(this) `head${1}middle${2}tail`;
__classPrivateFieldGet((_a = this.getInstance()), _AA_instances, "m", _AA_method2).bind(_a) `test${1}and${2}`;
__classPrivateFieldGet((_b = this.getInstance()), _AA_instances, "m", _AA_method2).call(_b, 0, ...arr, 3);
const b2 = new (__classPrivateFieldGet(this.getInstance(), _AA_instances, "m", _AA_method2))(0, ...arr, 3); //Error
const str2 = __classPrivateFieldGet((_c = this.getInstance()), _AA_instances, "m", _AA_method2).bind(_c) `head${1}middle${2}tail`;
}
getInstance() { return new AA(); }
}
_AA_instances = new WeakSet(), _AA_method = function _AA_method() { this.x = 10; }, _AA_method2 = function _AA_method2(a, ...b) { };
|