/* generated by Svelte vX.Y.Z */
import {
SvelteComponentDev ,
add _location ,
append ,
destroy _each ,
detach ,
element ,
init ,
insert ,
noop ,
safe _not _equal ,
set _data ,
space ,
text
} from "svelte/internal" ;
const file = undefined ;
function get _each _context ( ctx , list , i ) {
const child _ctx = Object . create ( ctx ) ;
child _ctx . thing = list [ i ] ;
return child _ctx ;
}
// (6:0) {#each things as thing}
function create _each _block ( ctx ) {
var span , t0 _value = ctx . thing . name , t0 , t1 ;
return {
c : function create ( ) {
span = element ( "span" ) ;
t0 = text ( t0 _value ) ;
t1 = space ( ) ;
{
const { foo } = ctx ;
console . log ( { foo } ) ;
debugger ;
}
add _location ( span , file , 6 , 1 , 82 ) ;
} ,
m : function mount ( target , anchor ) {
insert ( target , span , anchor ) ;
append ( span , t0 ) ;
insert ( target , t1 , anchor ) ;
} ,
p : function update ( changed , ctx ) {
if ( ( changed . things ) && t0 _value !== ( t0 _value = ctx . thing . name ) ) {
set _data ( t0 , t0 _value ) ;
}
if ( changed . foo ) {
const { foo } = ctx ;
console . log ( { foo } ) ;
debugger ;
}
} ,
d : function destroy ( detaching ) {
if ( detaching ) {
detach ( span ) ;
detach ( t1 ) ;
}
}
} ;
}
function create _fragment ( ctx ) {
var t0 , p , t1 , t2 ;
var each _value = ctx . things ;
var each _blocks = [ ] ;
for ( var i = 0 ; i < each _value . length ; i += 1 ) {
each _blocks [ i ] = create _each _block ( get _each _context ( ctx , each _value , i ) ) ;
}
return {
c : function create ( ) {
for ( var i = 0 ; i < each _blocks . length ; i += 1 ) {
each _blocks [ i ] . c ( ) ;
}
t0 = space ( ) ;
p = element ( "p" ) ;
t1 = text ( "foo: " ) ;
t2 = text ( ctx . foo ) ;
add _location ( p , file , 10 , 0 , 131 ) ;
} ,
l : function claim ( nodes ) {
throw new Error ( "options.hydrate only works if the component was compiled with the `hydratable: true` option" ) ;
} ,
m : function mount ( target , anchor ) {
for ( var i = 0 ; i < each _blocks . length ; i += 1 ) {
each _blocks [ i ] . m ( target , anchor ) ;
}
insert ( target , t0 , anchor ) ;
insert ( target , p , anchor ) ;
append ( p , t1 ) ;
append ( p , t2 ) ;
} ,
p : function update ( changed , ctx ) {
if ( changed . things ) {
each _value = ctx . things ;
for ( var i = 0 ; i < each _value . length ; i += 1 ) {
const child _ctx = get _each _context ( ctx , each _value , i ) ;
if ( each _blocks [ i ] ) {
each _blocks [ i ] . p ( changed , child _ctx ) ;
} else {
each _blocks [ i ] = create _each _block ( child _ctx ) ;
each _blocks [ i ] . c ( ) ;
each _blocks [ i ] . m ( t0 . parentNode , t0 ) ;
}
}
for ( ; i < each _blocks . length ; i += 1 ) {
each _blocks [ i ] . d ( 1 ) ;
}
each _blocks . length = each _value . length ;
}
if ( changed . foo ) {
set _data ( t2 , ctx . foo ) ;
}
} ,
i : noop ,
o : noop ,
d : function destroy ( detaching ) {
destroy _each ( each _blocks , detaching ) ;
if ( detaching ) {
detach ( t0 ) ;
detach ( p ) ;
}
}
} ;
}
function instance ( $$self , $$props , $$invalidate ) {
let { things , foo } = $$props ;
const writable _props = [ 'things' , 'foo' ] ;
Object . keys ( $$props ) . forEach ( key => {
if ( ! writable _props . includes ( key ) && ! key . startsWith ( '$$' ) ) console . warn ( ` <Component> was created with unknown prop ' ${ key } ' ` ) ;
} ) ;
$$self . $set = $$props => {
if ( 'things' in $$props ) $$invalidate ( 'things' , things = $$props . things ) ;
if ( 'foo' in $$props ) $$invalidate ( 'foo' , foo = $$props . foo ) ;
} ;
return { things , foo } ;
}
class Component extends SvelteComponentDev {
constructor ( options ) {
super ( options ) ;
init ( this , options , instance , create _fragment , safe _not _equal , [ "things" , "foo" ] ) ;
const { ctx } = this . $$ ;
const props = options . props || { } ;
if ( ctx . things === undefined && ! ( 'things' in props ) ) {
console . warn ( "<Component> was created without expected prop 'things'" ) ;
}
if ( ctx . foo === undefined && ! ( 'foo' in props ) ) {
console . warn ( "<Component> was created without expected prop 'foo'" ) ;
}
}
get things ( ) {
throw new Error ( "<Component>: Props cannot be read directly from the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'" ) ;
}
set things ( value ) {
throw new Error ( "<Component>: Props cannot be set directly on the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'" ) ;
}
get foo ( ) {
throw new Error ( "<Component>: Props cannot be read directly from the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'" ) ;
}
set foo ( value ) {
throw new Error ( "<Component>: Props cannot be set directly on the component instance unless compiling with 'accessors: true' or '<svelte:options accessors/>'" ) ;
}
}
export default Component ;