3
3
import "svelte/internal/disclose-version" ;
4
4
import * as $ from "svelte/internal" ;
5
5
6
- var frag = $ . template ( `<div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div>` , true ) ;
6
+ var frag = $ . template ( `<div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> ` , true ) ;
7
7
8
8
export default function Directives_with_member_access ( $$anchor , $$props ) {
9
9
$ . push ( $$props , false ) ;
10
10
11
11
const one = ( ) => { } ;
12
- const nested = { one } ;
12
+ const nested = { one, "with-string" : one } ;
13
13
const evenmore = { nested } ;
14
14
15
15
/* Init */
@@ -64,9 +64,45 @@ export default function Directives_with_member_access($$anchor, $$props) {
64
64
var div_14 = $ . sibling ( $ . sibling ( div_13 ) ) ;
65
65
66
66
$ . out ( div_14 , evenmore [ 'nested' ] [ 'one' ] , null , false ) ;
67
+
68
+ var div_15 = $ . sibling ( $ . sibling ( div_14 ) ) ;
69
+ var div_16 = $ . sibling ( $ . sibling ( div_15 ) ) ;
70
+ var div_17 = $ . sibling ( $ . sibling ( div_16 ) ) ;
71
+
72
+ $ . transition ( div_17 , nested [ 'with-string' ] , null , false ) ;
73
+
74
+ var div_18 = $ . sibling ( $ . sibling ( div_17 ) ) ;
75
+
76
+ $ . transition ( div_18 , evenmore [ 'nested' ] [ 'with-string' ] , null , false ) ;
77
+
78
+ var div_19 = $ . sibling ( $ . sibling ( div_18 ) ) ;
79
+
80
+ $ . animate ( div_19 , nested [ 'with-string' ] , null ) ;
81
+
82
+ var div_20 = $ . sibling ( $ . sibling ( div_19 ) ) ;
83
+
84
+ $ . animate ( div_20 , evenmore [ 'nested' ] [ 'with-string' ] , null ) ;
85
+
86
+ var div_21 = $ . sibling ( $ . sibling ( div_20 ) ) ;
87
+
88
+ $ . in ( div_21 , nested [ 'with-string' ] , null , false ) ;
89
+
90
+ var div_22 = $ . sibling ( $ . sibling ( div_21 ) ) ;
91
+
92
+ $ . in ( div_22 , evenmore [ 'nested' ] [ 'with-string' ] , null , false ) ;
93
+
94
+ var div_23 = $ . sibling ( $ . sibling ( div_22 ) ) ;
95
+
96
+ $ . out ( div_23 , nested [ 'with-string' ] , null , false ) ;
97
+
98
+ var div_24 = $ . sibling ( $ . sibling ( div_23 ) ) ;
99
+
100
+ $ . out ( div_24 , evenmore [ 'nested' ] [ 'with-string' ] , null , false ) ;
67
101
$ . action ( div , $$node => one ( $$node ) ) ;
68
102
$ . action ( div_1 , $$node => nested [ 'one' ] ( $$node ) ) ;
69
103
$ . action ( div_2 , $$node => evenmore [ 'nested' ] [ 'one' ] ( $$node ) ) ;
104
+ $ . action ( div_15 , $$node => nested [ 'with-string' ] ( $$node ) ) ;
105
+ $ . action ( div_16 , $$node => evenmore [ 'nested' ] [ 'with-string' ] ( $$node ) ) ;
70
106
$ . close_frag ( $$anchor , fragment ) ;
71
107
$ . pop ( ) ;
72
108
}
0 commit comments