File tree 8 files changed +1371
-5
lines changed
tests/fixtures/parser/ast/svelte5/unknown-runes-mode
8 files changed +1371
-5
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " svelte-eslint-parser " : patch
3
+ ---
4
+
5
+ fix: resolve issues in Runes mode detection causing parser malfunctions
Original file line number Diff line number Diff line change @@ -191,7 +191,8 @@ export function analyzePropsScope(
191
191
}
192
192
}
193
193
} else if ( node . type === "VariableDeclaration" ) {
194
- if ( svelteParseContext . runes ) {
194
+ // Process if not confirmed as non-Runes mode.
195
+ if ( svelteParseContext . runes !== false ) {
195
196
// Process for Svelte v5 Runes props. e.g. `let { x = $bindable() } = $props()`;
196
197
for ( const decl of node . declarations ) {
197
198
if (
Original file line number Diff line number Diff line change @@ -16,15 +16,17 @@ type Global =
16
16
export function getGlobalsForSvelte (
17
17
svelteParseContext : SvelteParseContext ,
18
18
) : readonly Global [ ] {
19
- if ( svelteParseContext . runes ) {
19
+ // Process if not confirmed as non-Runes mode.
20
+ if ( svelteParseContext . runes !== false ) {
20
21
return [ ...globalsForSvelte , ...globalsForRunes ] ;
21
22
}
22
23
return globalsForSvelte ;
23
24
}
24
25
export function getGlobalsForSvelteScript (
25
26
svelteParseContext : SvelteParseContext ,
26
27
) : readonly Global [ ] {
27
- if ( svelteParseContext . runes ) {
28
+ // Process if not confirmed as non-Runes mode.
29
+ if ( svelteParseContext . runes !== false ) {
28
30
return globalsForRunes ;
29
31
}
30
32
return [ ] ;
Original file line number Diff line number Diff line change @@ -377,7 +377,10 @@ function analyzeRuneVariables(
377
377
ctx : VirtualTypeScriptContext ,
378
378
svelteParseContext : SvelteParseContext ,
379
379
) {
380
- if ( ! svelteParseContext . runes ) return ;
380
+ // No processing is needed if the user is determined not to be in Runes mode.
381
+ if ( svelteParseContext . runes === false ) {
382
+ return ;
383
+ }
381
384
const scopeManager = result . scopeManager ;
382
385
for ( const globalName of globalsForRunes ) {
383
386
if (
@@ -583,7 +586,8 @@ function* analyzeDollarDerivedScopes(
583
586
result : TSESParseForESLintResult ,
584
587
svelteParseContext : SvelteParseContext ,
585
588
) : Iterable < TransformInfo > {
586
- if ( ! svelteParseContext . runes ) return ;
589
+ // No processing is needed if the user is determined not to be in Runes mode.
590
+ if ( svelteParseContext . runes === false ) return ;
587
591
const scopeManager = result . scopeManager ;
588
592
const derivedReferences = scopeManager . globalScope ! . through . filter (
589
593
( reference ) => reference . identifier . name === "$derived" ,
Original file line number Diff line number Diff line change
1
+ <script >
2
+ const { p } = $props ();
3
+ </script >
4
+
5
+ <span >{p }</span >
Load Diff Large diffs are not rendered by default.
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change
1
+ /** Config for testing */
2
+ export default { } ;
You can’t perform that action at this time.
0 commit comments