You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/svelte/src/compiler/errors.js
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -208,7 +208,8 @@ const runes = {
208
208
'invalid-runes-mode-import': (name)=>`${name} cannot be used in runes mode`,
209
209
'duplicate-props-rune': ()=>`Cannot use $props() more than once`,
210
210
'invalid-each-assignment': ()=>
211
-
`Cannot reassign or bind to each block argument in runes mode. Use the array and index variables instead (e.g. 'array[i] = value' instead of 'entry = value')`
211
+
`Cannot reassign or bind to each block argument in runes mode. Use the array and index variables instead (e.g. 'array[i] = value' instead of 'entry = value')`,
212
+
'invalid-derived-call': ()=>`$derived.call(...) has been replaced with $derived.by(...)`
0 commit comments