pull/12878/head
Dominic Gannaway 2 years ago
parent 76f66f83fe
commit d2f71361e5

@ -949,6 +949,8 @@ declare module 'svelte/compiler' {
references: { node: Identifier; path: SvelteNode[] }[]; references: { node: Identifier; path: SvelteNode[] }[];
mutated: boolean; mutated: boolean;
reassigned: boolean; reassigned: boolean;
/** `true` if mutated _or_ reassigned */
updated: boolean;
scope: Scope; scope: Scope;
/** For `legacy_reactive`: its reactive dependencies */ /** For `legacy_reactive`: its reactive dependencies */
legacy_dependencies: Binding[]; legacy_dependencies: Binding[];
@ -1862,8 +1864,6 @@ declare module 'svelte/compiler' {
index: Identifier; index: Identifier;
item: Identifier; item: Identifier;
declarations: Map<string, Binding>; declarations: Map<string, Binding>;
/** List of bindings that are referenced within the expression */
references: Binding[];
/** /**
* Optimization path for each blocks: If the parent isn't a fragment and * Optimization path for each blocks: If the parent isn't a fragment and
* it only has a single child, then we can classify the block as being "controlled". * it only has a single child, then we can classify the block as being "controlled".

Loading…
Cancel
Save