mirror of https://github.com/sveltejs/svelte
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
109 lines
1.5 KiB
109 lines
1.5 KiB
5 years ago
|
/* generated by Svelte vX.Y.Z */
|
||
|
import {
|
||
|
SvelteComponentDev,
|
||
|
dispatch_dev,
|
||
|
init,
|
||
5 years ago
|
loop_guard,
|
||
5 years ago
|
noop,
|
||
|
safe_not_equal
|
||
|
} from "svelte/internal";
|
||
|
|
||
|
const file = undefined;
|
||
|
|
||
|
function create_fragment(ctx) {
|
||
|
const block = {
|
||
|
c: noop,
|
||
|
l: function claim(nodes) {
|
||
|
throw new Error("options.hydrate only works if the component was compiled with the `hydratable: true` option");
|
||
|
},
|
||
|
m: noop,
|
||
|
p: noop,
|
||
|
i: noop,
|
||
|
o: noop,
|
||
|
d: noop
|
||
|
};
|
||
|
|
||
|
dispatch_dev("SvelteRegisterBlock", {
|
||
|
block,
|
||
|
id: create_fragment.name,
|
||
|
type: "component",
|
||
|
source: "",
|
||
|
ctx
|
||
|
});
|
||
|
|
||
|
return block;
|
||
|
}
|
||
|
|
||
|
function instance($$self) {
|
||
5 years ago
|
const guard = loop_guard();
|
||
5 years ago
|
|
||
|
while (true) {
|
||
|
foo();
|
||
5 years ago
|
guard();
|
||
5 years ago
|
}
|
||
|
|
||
5 years ago
|
const guard_1 = loop_guard();
|
||
5 years ago
|
|
||
|
for (; ; ) {
|
||
|
foo();
|
||
5 years ago
|
guard_1();
|
||
5 years ago
|
}
|
||
|
|
||
5 years ago
|
const guard_2 = loop_guard();
|
||
5 years ago
|
|
||
|
while (true) {
|
||
|
foo();
|
||
5 years ago
|
guard_2();
|
||
5 years ago
|
}
|
||
|
|
||
5 years ago
|
const guard_4 = loop_guard();
|
||
5 years ago
|
|
||
|
do {
|
||
|
foo();
|
||
5 years ago
|
guard_4();
|
||
5 years ago
|
} while (true);
|
||
|
|
||
|
$$self.$capture_state = () => {
|
||
|
return {};
|
||
|
};
|
||
|
|
||
|
$$self.$inject_state = $$props => {
|
||
5 years ago
|
|
||
5 years ago
|
};
|
||
|
|
||
|
$: {
|
||
5 years ago
|
const guard_3 = loop_guard();
|
||
5 years ago
|
|
||
|
while (true) {
|
||
|
foo();
|
||
5 years ago
|
guard_3();
|
||
5 years ago
|
}
|
||
|
}
|
||
|
|
||
|
$: {
|
||
5 years ago
|
const guard_5 = loop_guard();
|
||
5 years ago
|
|
||
|
do {
|
||
|
foo();
|
||
5 years ago
|
guard_5();
|
||
5 years ago
|
} while (true);
|
||
|
}
|
||
|
|
||
|
return {};
|
||
|
}
|
||
|
|
||
|
class Component extends SvelteComponentDev {
|
||
|
constructor(options) {
|
||
|
super(options);
|
||
|
init(this, options, instance, create_fragment, safe_not_equal, {});
|
||
|
|
||
|
dispatch_dev("SvelteRegisterComponent", {
|
||
|
component: this,
|
||
|
tagName: "Component",
|
||
|
options,
|
||
|
id: create_fragment.name
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default Component;
|