Skip to content

fix: correctly transform reassignments to class fields in SSR mode #16051

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

Merged
merged 3 commits into from
Jun 1, 2025
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/rude-drinks-relate.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'svelte': patch
---

fix: correctly transform reassignments to class fields in SSR mode
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@ export function AssignmentExpression(node, context) {
* @returns {Expression | null}
*/
function build_assignment(operator, left, right, context) {
if (context.state.analysis.runes && left.type === 'MemberExpression') {
if (
context.state.analysis.runes &&
left.type === 'MemberExpression' &&
left.object.type === 'ThisExpression' &&
!left.computed
) {
const name = get_name(left.property);
const field = name && context.state.state_fields.get(name);

Expand All @@ -44,7 +49,11 @@ function build_assignment(operator, left, right, context) {
/** @type {Expression} */ (context.visit(right))
);
}
} else if (field && (field.type === '$derived' || field.type === '$derived.by')) {
} else if (
field &&
(field.type === '$derived' || field.type === '$derived.by') &&
left.property.type === 'PrivateIdentifier'
) {
let value = /** @type {Expression} */ (
context.visit(build_assignment_value(operator, left, right))
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default function Class_state_field_constructor_assignment($$anchor, $$pro
$.push($$props, true);

class Foo {
#a = $.state();
#a = $.state(0);

get a() {
return $.get(this.#a);
Expand All @@ -16,10 +16,31 @@ export default function Class_state_field_constructor_assignment($$anchor, $$pro
}

#b = $.state();
#foo = $.derived(() => ({ bar: this.a * 2 }));

get foo() {
return $.get(this.#foo);
}

set foo(value) {
$.set(this.#foo, value);
}

#bar = $.derived(() => ({ baz: this.foo }));

get bar() {
return $.get(this.#bar);
}

set bar(value) {
$.set(this.#bar, value);
}

constructor() {
this.a = 1;
$.set(this.#b, 2);
this.foo.bar = 3;
this.bar = 4;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,33 @@ export default function Class_state_field_constructor_assignment($$payload, $$pr
$.push();

class Foo {
a;
a = 0;
#b;
#foo = $.derived(() => ({ bar: this.a * 2 }));

get foo() {
return this.#foo();
}

set foo($$value) {
return this.#foo($$value);
}

#bar = $.derived(() => ({ baz: this.foo }));

get bar() {
return this.#bar();
}

set bar($$value) {
return this.#bar($$value);
}

constructor() {
this.a = 1;
this.#b = 2;
this.foo.bar = 3;
this.bar = 4;
}
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
<script>
class Foo {
a = $state();
a = $state(0);
#b = $state();

foo = $derived({ bar: this.a * 2 });
bar = $derived({ baz: this.foo });
constructor() {
this.a = 1;
this.#b = 2;
this.foo.bar = 3;
this.bar = 4;
}
}
</script>