Skip to content

Commit 1b882fb

Browse files
authored
chore: remove reactive_statements from state (#15363)
1 parent bfeb9ad commit 1b882fb

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

packages/svelte/src/compiler/phases/2-analyze/index.js

+2-5
Original file line numberDiff line numberDiff line change
@@ -269,8 +269,7 @@ export function analyze_module(ast, options) {
269269
has_props_rune: false,
270270
options: /** @type {ValidatedCompileOptions} */ (options),
271271
parent_element: null,
272-
reactive_statement: null,
273-
reactive_statements: new Map()
272+
reactive_statement: null
274273
},
275274
visitors
276275
);
@@ -619,8 +618,7 @@ export function analyze_component(root, source, options) {
619618
expression: null,
620619
derived_state: [],
621620
function_depth: scope.function_depth,
622-
reactive_statement: null,
623-
reactive_statements: new Map()
621+
reactive_statement: null
624622
};
625623

626624
walk(/** @type {AST.SvelteNode} */ (ast), state, visitors);
@@ -683,7 +681,6 @@ export function analyze_component(root, source, options) {
683681
has_props_rune: false,
684682
ast_type: ast === instance.ast ? 'instance' : ast === template.ast ? 'template' : 'module',
685683
reactive_statement: null,
686-
reactive_statements: analysis.reactive_statements,
687684
component_slots: new Set(),
688685
expression: null,
689686
derived_state: [],

packages/svelte/src/compiler/phases/2-analyze/types.d.ts

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import type { Scope } from '../scope.js';
22
import type { ComponentAnalysis, ReactiveStatement } from '../types.js';
33
import type { AST, ExpressionMetadata, ValidatedCompileOptions } from '#compiler';
4-
import type { LabeledStatement } from 'estree';
54

65
export interface AnalysisState {
76
scope: Scope;
@@ -24,7 +23,6 @@ export interface AnalysisState {
2423

2524
// legacy stuff
2625
reactive_statement: null | ReactiveStatement;
27-
reactive_statements: Map<LabeledStatement, ReactiveStatement>;
2826
}
2927

3028
export type Context<State extends AnalysisState = AnalysisState> = import('zimmerframe').Context<

packages/svelte/src/compiler/phases/2-analyze/visitors/LabeledStatement.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export function LabeledStatement(node, context) {
6464
}
6565
}
6666

67-
context.state.reactive_statements.set(node, reactive_statement);
67+
context.state.analysis.reactive_statements.set(node, reactive_statement);
6868

6969
if (
7070
node.body.type === 'ExpressionStatement' &&

0 commit comments

Comments
 (0)