We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7eb14e7 commit 864272cCopy full SHA for 864272c
packages/svelte/src/compiler/phases/scope.js
@@ -91,7 +91,6 @@ export class Scope {
91
const binding = {
92
node,
93
references: [],
94
- referenced_in_template: false,
95
legacy_dependencies: [],
96
initial,
97
mutated: false,
packages/svelte/src/compiler/types/index.d.ts
@@ -268,7 +268,6 @@ export interface Binding {
268
initial: null | Expression | FunctionDeclaration | ClassDeclaration | ImportDeclaration;
269
is_called: boolean;
270
references: { node: Identifier; path: SvelteNode[] }[];
271
- referenced_in_template: boolean;
272
mutated: boolean;
273
scope: Scope;
274
/** For `legacy_reactive`: its reactive dependencies */
0 commit comments