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",
@ -45,4 +47,4 @@
}
]
}
}
}

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

@ -81,4 +81,4 @@
"styles": "\n\tdiv {\n\t\tcolor: red;\n\t}\n"
}
}
}
}

@ -81,4 +81,4 @@
"styles": "\n\tdiv {\n\t\tcolor: red;\n\t}\n"
}
}
}
}

@ -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();

@ -45,4 +45,4 @@ export default function Main($$anchor, $$props) {
$.close_frag($$anchor, fragment);
$.pop();
}
}

@ -1,4 +1,4 @@
/* index.svelte.js generated by Svelte VERSION */
import * as $ from "svelte/internal";
export const object = $.proxy({ ok: true });
export const object = $.proxy({ ok: true });

@ -1,5 +1,4 @@
/* index.svelte.js generated by Svelte VERSION */
import * as $ from "svelte/internal/server";
export const object = { ok: true };
export const object = { ok: true };

@ -14,4 +14,4 @@ export default function Svelte_element($$anchor, $$props) {
$.element(node, () => $.get(tag));
$.close_frag($$anchor, fragment);
$.pop();
}
}
Loading…
Cancel
Save