update snapshot tests

pull/794/head
Rich Harris 7 years ago
parent d8269b3e7f
commit 5f5f09b94e

@ -217,7 +217,7 @@ function create_main_fragment ( state, component ) {
}
function SvelteComponent ( options ) {
options = options || {};
this.options = options;
this._state = assign( template.data(), options.data );
this._observers = {

@ -53,7 +53,7 @@ function create_main_fragment ( state, component ) {
}
function SvelteComponent ( options ) {
options = options || {};
this.options = options;
this._state = assign( template.data(), options.data );
this._observers = {

@ -165,7 +165,7 @@ function create_main_fragment ( state, component ) {
}
function SvelteComponent ( options ) {
options = options || {};
this.options = options;
this._state = options.data || {};
this._recompute( {}, this._state, {}, true );

@ -25,7 +25,7 @@ function create_main_fragment ( state, component ) {
}
function SvelteComponent ( options ) {
options = options || {};
this.options = options;
this._state = options.data || {};
this._recompute( {}, this._state, {}, true );

@ -199,7 +199,7 @@ function create_main_fragment ( state, component ) {
}
function SvelteComponent ( options ) {
options = options || {};
this.options = options;
this._state = options.data || {};
this._observers = {

@ -39,7 +39,7 @@ function create_main_fragment ( state, component ) {
}
function SvelteComponent ( options ) {
options = options || {};
this.options = options;
this._state = options.data || {};
this._observers = {

@ -313,7 +313,7 @@ function create_each_block ( state, each_block_value, comment, i, component ) {
}
function SvelteComponent ( options ) {
options = options || {};
this.options = options;
this._state = options.data || {};
this._observers = {

@ -140,7 +140,7 @@ function create_each_block ( state, each_block_value, comment, i, component ) {
}
function SvelteComponent ( options ) {
options = options || {};
this.options = options;
this._state = options.data || {};
this._observers = {

@ -210,7 +210,7 @@ function create_main_fragment ( state, component ) {
}
function SvelteComponent ( options ) {
options = options || {};
this.options = options;
this._state = options.data || {};
this._observers = {

@ -50,7 +50,7 @@ function create_main_fragment ( state, component ) {
}
function SvelteComponent ( options ) {
options = options || {};
this.options = options;
this._state = options.data || {};
this._observers = {

@ -252,7 +252,7 @@ function select_block_type ( state ) {
}
function SvelteComponent ( options ) {
options = options || {};
this.options = options;
this._state = options.data || {};
this._observers = {

@ -88,7 +88,7 @@ function select_block_type ( state ) {
}
function SvelteComponent ( options ) {
options = options || {};
this.options = options;
this._state = options.data || {};
this._observers = {

@ -228,7 +228,7 @@ function create_if_block ( state, component ) {
}
function SvelteComponent ( options ) {
options = options || {};
this.options = options;
this._state = options.data || {};
this._observers = {

@ -64,7 +64,7 @@ function create_if_block ( state, component ) {
}
function SvelteComponent ( options ) {
options = options || {};
this.options = options;
this._state = options.data || {};
this._observers = {

@ -186,7 +186,7 @@ function create_main_fragment ( state, component ) {
}
function SvelteComponent ( options ) {
options = options || {};
this.options = options;
this._state = options.data || {};
this._observers = {

@ -28,7 +28,7 @@ function create_main_fragment ( state, component ) {
}
function SvelteComponent ( options ) {
options = options || {};
this.options = options;
this._state = options.data || {};
this._observers = {

@ -202,7 +202,7 @@ function create_main_fragment ( state, component ) {
}
function SvelteComponent ( options ) {
options = options || {};
this.options = options;
this._state = options.data || {};
this._observers = {

@ -50,7 +50,7 @@ function create_main_fragment ( state, component ) {
}
function SvelteComponent ( options ) {
options = options || {};
this.options = options;
this._state = options.data || {};
this._observers = {

@ -164,7 +164,7 @@ function create_main_fragment ( state, component ) {
}
function SvelteComponent ( options ) {
options = options || {};
this.options = options;
this._state = options.data || {};
this._observers = {

@ -24,7 +24,7 @@ function create_main_fragment ( state, component ) {
}
function SvelteComponent ( options ) {
options = options || {};
this.options = options;
this._state = options.data || {};
this._observers = {

@ -175,7 +175,7 @@ function create_main_fragment ( state, component ) {
}
function SvelteComponent ( options ) {
options = options || {};
this.options = options;
this._state = options.data || {};
this._observers = {

@ -35,7 +35,7 @@ function create_main_fragment ( state, component ) {
}
function SvelteComponent ( options ) {
options = options || {};
this.options = options;
this._state = options.data || {};
this._observers = {

@ -412,7 +412,7 @@ function create_if_block_4 ( state, component ) {
}
function SvelteComponent ( options ) {
options = options || {};
this.options = options;
this._state = options.data || {};
this._observers = {

@ -248,7 +248,7 @@ function create_if_block_4 ( state, component ) {
}
function SvelteComponent ( options ) {
options = options || {};
this.options = options;
this._state = options.data || {};
this._observers = {

Loading…
Cancel
Save