Skip to content

Commit 02f469b

Browse files
committed
go away
1 parent 2bfcc9e commit 02f469b

File tree

3 files changed

+0
-19
lines changed

3 files changed

+0
-19
lines changed

documentation/docs/98-reference/.generated/compile-warnings.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -720,12 +720,6 @@ Reactive declarations only exist at the top level of the instance script
720720
Reassignments of module-level declarations will not cause reactive statements to update
721721
```
722722

723-
### reactive_declaration_non_reactive_property
724-
725-
```
726-
Properties of objects and arrays are not reactive unless in runes mode. Changes to this property will not cause the reactive statement to update
727-
```
728-
729723
### script_context_deprecated
730724

731725
```

packages/svelte/messages/compile-warnings/script.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,6 @@
2222

2323
> Reassignments of module-level declarations will not cause reactive statements to update
2424
25-
## reactive_declaration_non_reactive_property
26-
27-
> Properties of objects and arrays are not reactive unless in runes mode. Changes to this property will not cause the reactive statement to update
28-
2925
## state_referenced_locally
3026

3127
> State referenced in its own scope will never update. Did you mean to reference it inside a closure?

packages/svelte/src/compiler/warnings.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ export const codes = [
101101
"perf_avoid_nested_class",
102102
"reactive_declaration_invalid_placement",
103103
"reactive_declaration_module_script_dependency",
104-
"reactive_declaration_non_reactive_property",
105104
"state_referenced_locally",
106105
"store_rune_conflict",
107106
"css_unused_selector",
@@ -631,14 +630,6 @@ export function reactive_declaration_module_script_dependency(node) {
631630
w(node, "reactive_declaration_module_script_dependency", "Reassignments of module-level declarations will not cause reactive statements to update");
632631
}
633632

634-
/**
635-
* Properties of objects and arrays are not reactive unless in runes mode. Changes to this property will not cause the reactive statement to update
636-
* @param {null | NodeLike} node
637-
*/
638-
export function reactive_declaration_non_reactive_property(node) {
639-
w(node, "reactive_declaration_non_reactive_property", "Properties of objects and arrays are not reactive unless in runes mode. Changes to this property will not cause the reactive statement to update");
640-
}
641-
642633
/**
643634
* State referenced in its own scope will never update. Did you mean to reference it inside a closure?
644635
* @param {null | NodeLike} node

0 commit comments

Comments
 (0)