binding_property_non_reactive() — svelte Function Reference
Architecture documentation for the binding_property_non_reactive() function in warnings.js from the svelte codebase.
Entity Profile
Dependency Diagram
graph TD 632f76fe_c751_f840_6f53_19f8bfbf5524["binding_property_non_reactive()"] df278ca2_0a6c_fefe_09f2_b397500fe3c2["warnings.js"] 632f76fe_c751_f840_6f53_19f8bfbf5524 -->|defined in| df278ca2_0a6c_fefe_09f2_b397500fe3c2 addf2179_214f_fba8_e3ed_31d58ea8ab01["validate_binding()"] addf2179_214f_fba8_e3ed_31d58ea8ab01 -->|calls| 632f76fe_c751_f840_6f53_19f8bfbf5524 style 632f76fe_c751_f840_6f53_19f8bfbf5524 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
packages/svelte/src/internal/client/warnings.js lines 51–63
export function binding_property_non_reactive(binding, location) {
if (DEV) {
console.warn(
`%c[svelte] binding_property_non_reactive\n%c${location
? `\`${binding}\` (${location}) is binding to a non-reactive property`
: `\`${binding}\` is binding to a non-reactive property`}\nhttps://svelte.dev/e/binding_property_non_reactive`,
bold,
normal
);
} else {
console.warn(`https://svelte.dev/e/binding_property_non_reactive`);
}
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does binding_property_non_reactive() do?
binding_property_non_reactive() is a function in the svelte codebase, defined in packages/svelte/src/internal/client/warnings.js.
Where is binding_property_non_reactive() defined?
binding_property_non_reactive() is defined in packages/svelte/src/internal/client/warnings.js at line 51.
What calls binding_property_non_reactive()?
binding_property_non_reactive() is called by 1 function(s): validate_binding.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free