pull/9776/head
Dominic Gannaway 3 years ago
parent 58c318ccff
commit 7b63615fb3

@ -109,7 +109,7 @@ export const javascript_visitors_runes = {
'set',
definition.key,
[value],
[b.stmt(b.call('$.set', b.call('$.proxy', member), value))]
[b.stmt(b.call('$.set', member, b.call('$.proxy', value)))]
)
);
}

@ -15,7 +15,9 @@
"end": 36,
"type": "StyleDirective",
"name": "color",
"modifiers": ["important"],
"modifiers": [
"important"
],
"value": [
{
"type": "MustacheTag",

@ -9,7 +9,10 @@
"start": 0,
"end": 30,
"data": " svelte-ignore foo bar ",
"ignores": ["foo", "bar"]
"ignores": [
"foo",
"bar"
]
}
]
}

@ -14,7 +14,7 @@ export default function Class_state_field_constructor_assignment($$anchor, $$pro
}
set a(value) {
$.set(this.#a, value);
$.set(this.#a, $.proxy(value));
}
#b = $.source();

@ -2,4 +2,3 @@
import * as $ from "svelte/internal/server";
export const object = { ok: true };

Loading…
Cancel
Save