Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add support for logical assignments with private properties #11702

Merged
merged 2 commits into from Jul 30, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
43 changes: 28 additions & 15 deletions packages/babel-helper-member-expression-to-functions/src/index.js
Expand Up @@ -315,29 +315,42 @@ const handle = {

// MEMBER = VALUE -> _set(MEMBER, VALUE)
// MEMBER += VALUE -> _set(MEMBER, _get(MEMBER) + VALUE)
// MEMBER ??= VALUE -> _get(MEMBER) ?? _set(MEMBER, VALUE)
if (parentPath.isAssignmentExpression({ left: node })) {
if (this.simpleSet) {
member.replaceWith(this.simpleSet(member));
return;
}

const { operator, right } = parent;
let value = right;
const { operator, right: value } = parent;

if (operator !== "=") {
// Give the state handler a chance to memoise the member, since we'll
// reference it twice. The second access (the set) should do the memo
// assignment.
this.memoise(member, 2);

value = t.binaryExpression(
operator.slice(0, -1),
this.get(member),
value,
);
if (operator === "=") {
parentPath.replaceWith(this.set(member, value));
} else {
const operatorTrunc = operator.slice(0, -1);
if (t.LOGICAL_OPERATORS.includes(operatorTrunc)) {
ryzokuken marked this conversation as resolved.
Show resolved Hide resolved
// Give the state handler a chance to memoise the member, since we'll
// reference it twice. The first access (the get) should do the memo
// assignment.
this.memoise(member, 1);
parentPath.replaceWith(
t.logicalExpression(
operatorTrunc,
this.get(member),
this.set(member, value),
),
);
} else {
// Here, the second access (the set) is evaluated first.
this.memoise(member, 2);
parentPath.replaceWith(
this.set(
member,
t.binaryExpression(operatorTrunc, this.get(member), value),
),
);
}
}

parentPath.replaceWith(this.set(member, value));
return;
}

Expand Down
@@ -0,0 +1,17 @@
class Foo {
#nullish = 0;
#and = 0;
#or = 0;

self() {
return this;
}

test() {
this.#nullish ??= 42;
this.#and &&= 0;
this.#or ||= 0;

this.self().#nullish ??= 42;
}
}
@@ -0,0 +1,6 @@
{
"plugins": [
["proposal-logical-assignment-operators", { "loose": true }],
["proposal-class-properties", { "loose": true }]
]
}
@@ -0,0 +1,42 @@
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 _nullish = _classPrivateFieldLooseKey("nullish");

var _and = _classPrivateFieldLooseKey("and");

var _or = _classPrivateFieldLooseKey("or");

class Foo {
constructor() {
Object.defineProperty(this, _nullish, {
writable: true,
value: 0
});
Object.defineProperty(this, _and, {
writable: true,
value: 0
});
Object.defineProperty(this, _or, {
writable: true,
value: 0
});
}

self() {
return this;
}

test() {
var _classPrivateFieldLoo, _classPrivateFieldLoo2, _classPrivateFieldLoo3, _classPrivateFieldLoo4;

(_classPrivateFieldLoo = _classPrivateFieldLooseBase(this, _nullish))[_nullish] ?? (_classPrivateFieldLoo[_nullish] = 42);
(_classPrivateFieldLoo2 = _classPrivateFieldLooseBase(this, _and))[_and] && (_classPrivateFieldLoo2[_and] = 0);
(_classPrivateFieldLoo3 = _classPrivateFieldLooseBase(this, _or))[_or] || (_classPrivateFieldLoo3[_or] = 0);
(_classPrivateFieldLoo4 = _classPrivateFieldLooseBase(this.self(), _nullish))[_nullish] ?? (_classPrivateFieldLoo4[_nullish] = 42);
}

}
@@ -0,0 +1,17 @@
class Foo {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please also duplicate the test to test/fixtures/private-loose.

#nullish = 0;
#and = 0;
#or = 0;

self() {
return this;
}

test() {
this.#nullish ??= 42;
this.#and &&= 0;
this.#or ||= 0;

this.self().#nullish ??= 42;
}
}
@@ -0,0 +1,6 @@
{
"plugins": [
"proposal-logical-assignment-operators",
"proposal-class-properties"
]
}
@@ -0,0 +1,42 @@
function _classPrivateFieldSet(receiver, privateMap, value) { var descriptor = privateMap.get(receiver); if (!descriptor) { throw new TypeError("attempted to set private field on non-instance"); } if (descriptor.set) { descriptor.set.call(receiver, value); } else { if (!descriptor.writable) { throw new TypeError("attempted to set read only private field"); } descriptor.value = value; } return value; }

function _classPrivateFieldGet(receiver, privateMap) { var descriptor = privateMap.get(receiver); if (!descriptor) { throw new TypeError("attempted to get private field on non-instance"); } if (descriptor.get) { return descriptor.get.call(receiver); } return descriptor.value; }

var _nullish = new WeakMap();

var _and = new WeakMap();

var _or = new WeakMap();

class Foo {
constructor() {
_nullish.set(this, {
writable: true,
value: 0
});

_and.set(this, {
writable: true,
value: 0
});

_or.set(this, {
writable: true,
value: 0
});
}

self() {
return this;
}

test() {
var _this$self;

_classPrivateFieldGet(this, _nullish) ?? _classPrivateFieldSet(this, _nullish, 42);
JLHwung marked this conversation as resolved.
Show resolved Hide resolved
_classPrivateFieldGet(this, _and) && _classPrivateFieldSet(this, _and, 0);
_classPrivateFieldGet(this, _or) || _classPrivateFieldSet(this, _or, 0);
_classPrivateFieldGet(_this$self = this.self(), _nullish) ?? _classPrivateFieldSet(_this$self, _nullish, 42);
}

}
Expand Up @@ -13,7 +13,8 @@ export default declare(api => {
AssignmentExpression(path) {
const { node, scope } = path;
const { operator, left, right } = node;
if (operator !== "||=" && operator !== "&&=" && operator !== "??=") {
const operatorTrunc = operator.slice(0, -1);
if (!t.LOGICAL_OPERATORS.includes(operatorTrunc)) {
return;
}

Expand Down Expand Up @@ -41,7 +42,7 @@ export default declare(api => {

path.replaceWith(
t.logicalExpression(
operator.slice(0, -1),
operatorTrunc,
lhs,
t.assignmentExpression("=", left, right),
),
Expand Down