File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
packages/svelte/tests/migrate/samples/slot-non-identifier Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 42
42
<!-- don't remove the let directive if we don't migrate -->
43
43
44
44
<Comp >
45
- <div let:shoudl _stay slot =" cool:stuff" >
45
+ <div let:should _stay slot =" cool:stuff" >
46
46
cool
47
47
</div >
48
48
</Comp >
49
49
50
50
<Comp >
51
- <div let:shoudl _stay slot =" cool stuff" >
51
+ <div let:should _stay slot =" cool stuff" >
52
52
cool
53
53
</div >
54
54
</Comp >
55
55
56
56
<Comp >
57
- <svelte:fragment let:shoudl _stay slot =" cool:stuff" >
57
+ <svelte:fragment let:should _stay slot =" cool:stuff" >
58
58
cool
59
59
</svelte:fragment >
60
60
</Comp >
61
61
62
62
<Comp >
63
- <svelte:fragment let:shoudl _stay slot =" cool stuff" >
63
+ <svelte:fragment let:should _stay slot =" cool stuff" >
64
64
cool
65
65
</svelte:fragment >
66
66
</Comp >
Original file line number Diff line number Diff line change 51
51
52
52
<Comp >
53
53
<!-- @migration-task: migrate this slot by hand, `cool:stuff` is an invalid identifier -->
54
- <div let:shoudl _stay slot =" cool:stuff" >
54
+ <div let:should _stay slot =" cool:stuff" >
55
55
cool
56
56
</div >
57
57
</Comp >
58
58
59
59
<Comp >
60
60
<!-- @migration-task: migrate this slot by hand, `cool stuff` is an invalid identifier -->
61
- <div let:shoudl _stay slot =" cool stuff" >
61
+ <div let:should _stay slot =" cool stuff" >
62
62
cool
63
63
</div >
64
64
</Comp >
65
65
66
66
<Comp >
67
67
<!-- @migration-task: migrate this slot by hand, `cool:stuff` is an invalid identifier -->
68
- <svelte:fragment let:shoudl _stay slot =" cool:stuff" >
68
+ <svelte:fragment let:should _stay slot =" cool:stuff" >
69
69
cool
70
70
</svelte:fragment >
71
71
</Comp >
72
72
73
73
<Comp >
74
74
<!-- @migration-task: migrate this slot by hand, `cool stuff` is an invalid identifier -->
75
- <svelte:fragment let:shoudl _stay slot =" cool stuff" >
75
+ <svelte:fragment let:should _stay slot =" cool stuff" >
76
76
cool
77
77
</svelte:fragment >
78
78
</Comp >
You can’t perform that action at this time.
0 commit comments