@@ -7,7 +7,12 @@ import type {
7
7
SvelteScriptElement ,
8
8
SvelteSnippetBlock ,
9
9
} from "../ast/index.js" ;
10
- import { addReference , addVariable , getScopeFromNode } from "../scope/index.js" ;
10
+ import {
11
+ addReference ,
12
+ addVariable ,
13
+ getScopeFromNode ,
14
+ removeIdentifierVariable ,
15
+ } from "../scope/index.js" ;
11
16
import { addElementToSortedArray } from "../utils/index.js" ;
12
17
import type { NormalizedParserOptions } from "./parser-options.js" ;
13
18
import type { SvelteParseContext } from "./svelte-parse-context.js" ;
@@ -304,11 +309,27 @@ export function analyzeSnippetsScope(
304
309
if ( ! upperScope ) continue ;
305
310
const variable = upperScope . set . get ( snippet . id . name ) ;
306
311
if ( ! variable ) continue ;
307
- // Add the virtual reference for reading.
308
- const reference = addVirtualReference ( snippet . id , variable , upperScope , {
309
- read : true ,
310
- } ) ;
311
- ( reference as any ) . svelteSnippetReference = true ;
312
+ const defIds = variable . defs . map ( ( d ) => d . name ) ;
313
+ const refs = variable . references . filter (
314
+ ( id ) => ! defIds . includes ( id . identifier ) ,
315
+ ) ;
316
+
317
+ if ( refs . length <= 0 ) {
318
+ // If the snippet is not referenced,
319
+ // remove the a variable from the upperScope.
320
+ removeIdentifierVariable ( snippet . id , upperScope ) ;
321
+ } else {
322
+ // Add the virtual reference for reading.
323
+ const reference = addVirtualReference (
324
+ snippet . id ,
325
+ variable ,
326
+ upperScope ,
327
+ {
328
+ read : true ,
329
+ } ,
330
+ ) ;
331
+ ( reference as any ) . svelteSnippetReference = true ;
332
+ }
312
333
}
313
334
}
314
335
}
0 commit comments