Skip to content

Commit

Permalink
update snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
dummdidumm committed Jul 4, 2024
1 parent 43e19ee commit 506b0ea
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,5 @@ export default function Bind_component_snippet($$anchor) {

$.template_effect(() => $.set_text(text, ` value: ${$.get(value) ?? ""}`));
$.append($$anchor, fragment_1);
return {};
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ import * as $ from "svelte/internal/client";

export default function Bind_this($$anchor) {
$.bind_this(Foo($$anchor, { $$legacy: true }), ($$value) => foo = $$value, () => foo);
return {};
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,5 @@ export default function Main($$anchor) {
});

$.append($$anchor, fragment);
return {};
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ export default function Each_string_template($$anchor) {
});

$.append($$anchor, fragment);
return {};
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,6 @@ export default function Function_prop_no_getter($$anchor) {
},
$$slots: { default: true }
});

return {};
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ export default function Hello_world($$anchor) {
var h1 = root();

$.append($$anchor, h1);
return {};
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ function Hmr($$anchor) {
var h1 = root();

$.append($$anchor, h1);
return {};
}

if (import.meta.hot) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ export default function State_proxy_literal($$anchor) {
$.bind_value(input, () => $.get(str), ($$value) => $.set(str, $$value));
$.bind_value(input_1, () => $.get(tpl), ($$value) => $.set(tpl, $$value));
$.append($$anchor, fragment);
return {};
}

$.delegate(["click"]);
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ export default function Svelte_element($$anchor, $$props) {

$.element(node, tag, false);
$.append($$anchor, fragment);
return {};
}

0 comments on commit 506b0ea

Please sign in to comment.