-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* test: add test for nullish coalescing Co-Authored-By: Nicolò Ribaudo <nicolo.ribaudo@gmail.com> * test: add control group * test: add tests for optional chaining Co-Authored-By: Nicolò Ribaudo <nicolo.ribaudo@gmail.com> * test: add tests on optional chaining mixed with private class elements * fix: wrap member chains to IIFE when it is in parameter default * chore: add more testcases * chore: update test fixtures * fix: NodePath.get is always non nullish Co-authored-by: Nicolò Ribaudo <nicolo.ribaudo@gmail.com>
- Loading branch information
1 parent
9808d25
commit 5f83a8c
Showing
33 changed files
with
932 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
...rties/test/fixtures/private-loose/optional-chain-in-function-param-with-transform/exec.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
class Foo { | ||
static #x = 1; | ||
static #m = function() { return this.#x; }; | ||
static #self = Foo; | ||
static self = Foo; | ||
static getSelf() { return this } | ||
|
||
static test() { | ||
const o = { Foo: Foo }; | ||
const deep = { very: { o } }; | ||
function fn() { | ||
return o; | ||
} | ||
function fnDeep() { | ||
return deep; | ||
} | ||
|
||
function f(o, r = o?.Foo.#m()) { | ||
return r; | ||
} | ||
|
||
function g(o, r = o?.Foo.#self.getSelf().#m()) { | ||
return r; | ||
} | ||
|
||
function h(fnDeep, r = fnDeep?.().very.o?.Foo?.#m()) { | ||
return r; | ||
} | ||
|
||
function i(fn, r = fn?.().Foo.#self?.getSelf()?.self.#m()) { | ||
return r; | ||
} | ||
|
||
function j(fn, r = (fn().Foo.#self.getSelf().self.#m)?.()) { | ||
return r; | ||
} | ||
|
||
expect(f(o)).toBe(1); | ||
expect(g(o)).toBe(1); | ||
expect(h(fnDeep)).toBe(1); | ||
expect(i(fn)).toBe(1); | ||
expect(j(fn)).toBe(1); | ||
} | ||
} | ||
|
||
Foo.test(); |
46 changes: 46 additions & 0 deletions
46
...ties/test/fixtures/private-loose/optional-chain-in-function-param-with-transform/input.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
class Foo { | ||
static #x = 1; | ||
static #m = function() { return this.#x; }; | ||
static #self = Foo; | ||
static self = Foo; | ||
static getSelf() { return this } | ||
|
||
static test() { | ||
const o = { Foo: Foo }; | ||
const deep = { very: { o } }; | ||
function fn() { | ||
return o; | ||
} | ||
function fnDeep() { | ||
return deep; | ||
} | ||
|
||
function f(o, r = o?.Foo.#m()) { | ||
return r; | ||
} | ||
|
||
function g(o, r = o?.Foo.#self.getSelf().#m?.()) { | ||
return r; | ||
} | ||
|
||
function h(fnDeep, r = fnDeep?.().very.o?.Foo?.#m()) { | ||
return r; | ||
} | ||
|
||
function i(fn, r = fn?.().Foo.#self?.getSelf()?.self.#m()) { | ||
return r; | ||
} | ||
|
||
function j(fn, r = (fn().Foo.#self.getSelf().self.#m)?.()) { | ||
return r; | ||
} | ||
|
||
f(o); | ||
g(o); | ||
h(fnDeep); | ||
i(fn); | ||
j(fn); | ||
} | ||
} | ||
|
||
Foo.test(); |
6 changes: 6 additions & 0 deletions
6
.../test/fixtures/private-loose/optional-chain-in-function-param-with-transform/options.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"plugins": [ | ||
["proposal-optional-chaining", { "loose": true }], | ||
["proposal-class-properties", { "loose": true }] | ||
] | ||
} |
96 changes: 96 additions & 0 deletions
96
...ies/test/fixtures/private-loose/optional-chain-in-function-param-with-transform/output.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
function _classPrivateFieldLooseBase(receiver, privateKey) { if (!Object.prototype.hasOwnProperty.call(receiver, privateKey)) { throw new TypeError("attempted to use private field on non-instance"); } return receiver; } | ||
|
||
var id = 0; | ||
|
||
function _classPrivateFieldLooseKey(name) { return "__private_" + id++ + "_" + name; } | ||
|
||
var _x = _classPrivateFieldLooseKey("x"); | ||
|
||
var _m = _classPrivateFieldLooseKey("m"); | ||
|
||
var _self = _classPrivateFieldLooseKey("self"); | ||
|
||
class Foo { | ||
static getSelf() { | ||
return this; | ||
} | ||
|
||
static test() { | ||
const o = { | ||
Foo: Foo | ||
}; | ||
const deep = { | ||
very: { | ||
o | ||
} | ||
}; | ||
|
||
function fn() { | ||
return o; | ||
} | ||
|
||
function fnDeep() { | ||
return deep; | ||
} | ||
|
||
function f(o, r = (() => o === null || o === void 0 ? void 0 : _classPrivateFieldLooseBase(o.Foo, _m)[_m]())()) { | ||
return r; | ||
} | ||
|
||
function g(o, r = (() => { | ||
var _ref; | ||
|
||
return (_ref = (() => o === null || o === void 0 ? void 0 : _classPrivateFieldLooseBase(_classPrivateFieldLooseBase(o.Foo, _self)[_self].getSelf(), _m)[_m])()) == null ? void 0 : _ref(); | ||
})()) { | ||
return r; | ||
} | ||
|
||
function h(fnDeep, r = (() => { | ||
var _fnDeep$very$o$Foo, _fnDeep$very$o; | ||
|
||
return (_fnDeep$very$o$Foo = fnDeep == null ? void 0 : (_fnDeep$very$o = fnDeep().very.o) == null ? void 0 : _fnDeep$very$o.Foo) === null || _fnDeep$very$o$Foo === void 0 ? void 0 : _classPrivateFieldLooseBase(_fnDeep$very$o$Foo, _m)[_m](); | ||
})()) { | ||
return r; | ||
} | ||
|
||
function i(fn, r = (() => { | ||
var _getSelf, _ref2; | ||
|
||
return (_getSelf = (_ref2 = (() => fn === null || fn === void 0 ? void 0 : _classPrivateFieldLooseBase(fn().Foo, _self)[_self])()) == null ? void 0 : _ref2.getSelf()) === null || _getSelf === void 0 ? void 0 : _classPrivateFieldLooseBase(_getSelf.self, _m)[_m](); | ||
})()) { | ||
return r; | ||
} | ||
|
||
function j(fn, r = (() => { | ||
var _classPrivateFieldLoo, _classPrivateFieldLoo2; | ||
|
||
return (_classPrivateFieldLoo = (_classPrivateFieldLoo2 = _classPrivateFieldLooseBase(_classPrivateFieldLooseBase(fn().Foo, _self)[_self].getSelf().self, _m))[_m]) == null ? void 0 : _classPrivateFieldLoo.call(_classPrivateFieldLoo2); | ||
})()) { | ||
return r; | ||
} | ||
|
||
f(o); | ||
g(o); | ||
h(fnDeep); | ||
i(fn); | ||
j(fn); | ||
} | ||
|
||
} | ||
|
||
Object.defineProperty(Foo, _x, { | ||
writable: true, | ||
value: 1 | ||
}); | ||
Object.defineProperty(Foo, _m, { | ||
writable: true, | ||
value: function () { | ||
return _classPrivateFieldLooseBase(this, _x)[_x]; | ||
} | ||
}); | ||
Object.defineProperty(Foo, _self, { | ||
writable: true, | ||
value: Foo | ||
}); | ||
Foo.self = Foo; | ||
Foo.test(); |
46 changes: 46 additions & 0 deletions
46
...sal-class-properties/test/fixtures/private-loose/optional-chain-in-function-param/exec.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
class Foo { | ||
static #x = 1; | ||
static #m = function() { return this.#x; }; | ||
static #self = Foo; | ||
static self = Foo; | ||
static getSelf() { return this } | ||
|
||
static test() { | ||
const o = { Foo: Foo }; | ||
const deep = { very: { o } }; | ||
function fn() { | ||
return o; | ||
} | ||
function fnDeep() { | ||
return deep; | ||
} | ||
|
||
function f(o, r = o?.Foo.#m()) { | ||
return r; | ||
} | ||
|
||
function g(o, r = o?.Foo.#self.getSelf().#m()) { | ||
return r; | ||
} | ||
|
||
function h(fnDeep, r = fnDeep?.().very.o?.Foo?.#m()) { | ||
return r; | ||
} | ||
|
||
function i(fn, r = fn?.().Foo.#self?.getSelf()?.self.#m()) { | ||
return r; | ||
} | ||
|
||
function j(fn, r = (fn().Foo.#self.getSelf().self.#m)?.()) { | ||
return r; | ||
} | ||
|
||
expect(f(o)).toBe(1); | ||
expect(g(o)).toBe(1); | ||
expect(h(fnDeep)).toBe(1); | ||
expect(i(fn)).toBe(1); | ||
expect(j(fn)).toBe(1); | ||
} | ||
} | ||
|
||
Foo.test(); |
46 changes: 46 additions & 0 deletions
46
...al-class-properties/test/fixtures/private-loose/optional-chain-in-function-param/input.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
class Foo { | ||
static #x = 1; | ||
static #m = function() { return this.#x; }; | ||
static #self = Foo; | ||
static self = Foo; | ||
static getSelf() { return this } | ||
|
||
static test() { | ||
const o = { Foo: Foo }; | ||
const deep = { very: { o } }; | ||
function fn() { | ||
return o; | ||
} | ||
function fnDeep() { | ||
return deep; | ||
} | ||
|
||
function f(o, r = o?.Foo.#m()) { | ||
return r; | ||
} | ||
|
||
function g(o, r = o?.Foo.#self.getSelf().#m?.()) { | ||
return r; | ||
} | ||
|
||
function h(fnDeep, r = fnDeep?.().very.o?.Foo?.#m()) { | ||
return r; | ||
} | ||
|
||
function i(fn, r = fn?.().Foo.#self?.getSelf()?.self.#m()) { | ||
return r; | ||
} | ||
|
||
function j(fn, r = (fn().Foo.#self.getSelf().self.#m)?.()) { | ||
return r; | ||
} | ||
|
||
f(o); | ||
g(o); | ||
h(fnDeep); | ||
i(fn); | ||
j(fn); | ||
} | ||
} | ||
|
||
Foo.test(); |
4 changes: 4 additions & 0 deletions
4
...lass-properties/test/fixtures/private-loose/optional-chain-in-function-param/options.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"plugins": [["proposal-class-properties", { "loose": true }]], | ||
"minNodeVersion": "14.0.0" | ||
} |
Oops, something went wrong.