|
|
@ -4,6 +4,10 @@ import { assign, createComment, createElement, detachNode, init, insertNode, noo
|
|
|
|
function create_main_fragment(component, state) {
|
|
|
|
function create_main_fragment(component, state) {
|
|
|
|
var if_block_anchor;
|
|
|
|
var if_block_anchor;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function select_block_type(state) {
|
|
|
|
|
|
|
|
if (state.foo) return create_if_block;
|
|
|
|
|
|
|
|
return create_if_block_1;
|
|
|
|
|
|
|
|
}
|
|
|
|
var current_block_type = select_block_type(state);
|
|
|
|
var current_block_type = select_block_type(state);
|
|
|
|
var if_block = current_block_type(component, state);
|
|
|
|
var if_block = current_block_type(component, state);
|
|
|
|
|
|
|
|
|
|
|
@ -83,11 +87,6 @@ function create_if_block_1(component, state) {
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function select_block_type(state) {
|
|
|
|
|
|
|
|
if (state.foo) return create_if_block;
|
|
|
|
|
|
|
|
return create_if_block_1;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function SvelteComponent(options) {
|
|
|
|
function SvelteComponent(options) {
|
|
|
|
init(this, options);
|
|
|
|
init(this, options);
|
|
|
|
this._state = assign({}, options.data);
|
|
|
|
this._state = assign({}, options.data);
|
|
|
|