@@ -102,9 +102,12 @@ function getNodeRange(
102
102
] ;
103
103
}
104
104
105
+ type StatementNodeType = `${TSESTree . Statement [ "type" ] } `;
106
+
105
107
type RestoreCallback = {
106
108
start : number ;
107
109
end : number ;
110
+ nodeType : StatementNodeType ;
108
111
callback : ScriptLetRestoreCallback ;
109
112
} ;
110
113
@@ -167,6 +170,7 @@ export class ScriptLetContext {
167
170
`(${ part } )${ isTS ? `as (${ typing } )` : "" } ;` ,
168
171
range [ 0 ] - 1 ,
169
172
this . currentScriptScopeKind ,
173
+ "ExpressionStatement" ,
170
174
( st , tokens , comments , result ) => {
171
175
const exprSt = st as ESTree . ExpressionStatement ;
172
176
const tsAs : TSAsExpression | null = isTS
@@ -223,6 +227,7 @@ export class ScriptLetContext {
223
227
`({${ part } });` ,
224
228
range [ 0 ] - 2 ,
225
229
this . currentScriptScopeKind ,
230
+ "ExpressionStatement" ,
226
231
( st , tokens , _comments , result ) => {
227
232
const exprSt = st as ESTree . ExpressionStatement ;
228
233
const objectExpression : ESTree . ObjectExpression =
@@ -262,6 +267,7 @@ export class ScriptLetContext {
262
267
`const ${ part } ;` ,
263
268
range [ 0 ] - 6 ,
264
269
this . currentScriptScopeKind ,
270
+ "VariableDeclaration" ,
265
271
( st , tokens , _comments , result ) => {
266
272
const decl = st as ESTree . VariableDeclaration ;
267
273
const node = decl . declarations [ 0 ] ;
@@ -309,6 +315,7 @@ export class ScriptLetContext {
309
315
scriptLet ,
310
316
ranges . idRange [ 0 ] - 5 ,
311
317
"generics" ,
318
+ "TSTypeAliasDeclaration" ,
312
319
( st , tokens , _comments , result ) => {
313
320
const decl = st as any as TSESTree . TSTypeAliasDeclaration ;
314
321
const id = decl . id ;
@@ -361,6 +368,7 @@ export class ScriptLetContext {
361
368
scriptLet ,
362
369
ranges . defaultRange [ 0 ] - 5 - id . length - 1 ,
363
370
"generics" ,
371
+ "TSTypeAliasDeclaration" ,
364
372
( st , tokens , _comments , result ) => {
365
373
const decl = st as any as TSESTree . TSTypeAliasDeclaration ;
366
374
const typeAnnotation = decl . typeAnnotation ;
@@ -396,6 +404,7 @@ export class ScriptLetContext {
396
404
`if(${ part } ){` ,
397
405
range [ 0 ] - 3 ,
398
406
this . currentScriptScopeKind ,
407
+ "IfStatement" ,
399
408
( st , tokens , _comments , result ) => {
400
409
const ifSt = st as ESTree . IfStatement ;
401
410
const node = ifSt . test ;
@@ -451,6 +460,7 @@ export class ScriptLetContext {
451
460
source ,
452
461
exprRange [ 0 ] - exprOffset ,
453
462
this . currentScriptScopeKind ,
463
+ "ExpressionStatement" ,
454
464
( st , tokens , comments , result ) => {
455
465
const expSt = st as ESTree . ExpressionStatement ;
456
466
const call = expSt . expression as ESTree . CallExpression ;
@@ -534,15 +544,18 @@ export class ScriptLetContext {
534
544
id : ESTree . Identifier ,
535
545
closeParentIndex : number ,
536
546
snippetBlock : SvelteSnippetBlock ,
537
- kind : "snippet" | "render" ,
547
+ // If set to null, `currentScriptScopeKind` will be used.
548
+ kind : "snippet" | null ,
538
549
callback : ( id : ESTree . Identifier , params : ESTree . Pattern [ ] ) => void ,
539
550
) : void {
551
+ const scopeKind = kind || this . currentScriptScopeKind ;
540
552
const idRange = getNodeRange ( id ) ;
541
553
const part = this . ctx . code . slice ( idRange [ 0 ] , closeParentIndex + 1 ) ;
542
554
const restore = this . appendScript (
543
555
`function ${ part } {` ,
544
556
idRange [ 0 ] - 9 ,
545
- kind ,
557
+ scopeKind ,
558
+ "FunctionDeclaration" ,
546
559
( st , tokens , _comments , result ) => {
547
560
const fnDecl = st as ESTree . FunctionDeclaration ;
548
561
const idNode = fnDecl . id ;
@@ -568,7 +581,7 @@ export class ScriptLetContext {
568
581
fnDecl . params = [ ] ;
569
582
} ,
570
583
) ;
571
- this . pushScope ( restore , "}" , kind ) ;
584
+ this . pushScope ( restore , "}" , scopeKind ) ;
572
585
}
573
586
574
587
public nestBlock (
@@ -577,7 +590,7 @@ export class ScriptLetContext {
577
590
| ScriptLetBlockParam [ ]
578
591
| ( ( helper : TypeGenHelper | null ) => {
579
592
param : ScriptLetBlockParam ;
580
- preparationScript ?: string [ ] ;
593
+ preparationScript ?: { script : string ; nodeType : StatementNodeType } [ ] ;
581
594
} ) ,
582
595
) : void {
583
596
let resolvedParams ;
@@ -590,8 +603,9 @@ export class ScriptLetContext {
590
603
if ( generatedTypes . preparationScript ) {
591
604
for ( const preparationScript of generatedTypes . preparationScript ) {
592
605
this . appendScriptWithoutOffset (
593
- preparationScript ,
606
+ preparationScript . script ,
594
607
this . currentScriptScopeKind ,
608
+ preparationScript . nodeType ,
595
609
( node , tokens , comments , result ) => {
596
610
tokens . length = 0 ;
597
611
comments . length = 0 ;
@@ -612,6 +626,7 @@ export class ScriptLetContext {
612
626
`{` ,
613
627
block . range [ 0 ] ,
614
628
this . currentScriptScopeKind ,
629
+ "BlockStatement" ,
615
630
( st , tokens , _comments , result ) => {
616
631
const blockSt = st as ESTree . BlockStatement ;
617
632
@@ -668,6 +683,7 @@ export class ScriptLetContext {
668
683
`(${ source } )=>{` ,
669
684
maps [ 0 ] . range [ 0 ] - 1 ,
670
685
this . currentScriptScopeKind ,
686
+ "ExpressionStatement" ,
671
687
( st , tokens , comments , result ) => {
672
688
const exprSt = st as ESTree . ExpressionStatement ;
673
689
const fn = exprSt . expression as ESTree . ArrowFunctionExpression ;
@@ -742,6 +758,7 @@ export class ScriptLetContext {
742
758
text : string ,
743
759
offset : number ,
744
760
kind : "generics" | "snippet" | "render" ,
761
+ nodeType : StatementNodeType ,
745
762
callback : (
746
763
node : ESTree . Node ,
747
764
tokens : Token [ ] ,
@@ -752,6 +769,7 @@ export class ScriptLetContext {
752
769
const resultCallback = this . appendScriptWithoutOffset (
753
770
text ,
754
771
kind ,
772
+ nodeType ,
755
773
( node , tokens , comments , result ) => {
756
774
fixLocations (
757
775
node ,
@@ -770,6 +788,7 @@ export class ScriptLetContext {
770
788
private appendScriptWithoutOffset (
771
789
text : string ,
772
790
kind : "generics" | "snippet" | "render" ,
791
+ nodeType : StatementNodeType ,
773
792
callback : (
774
793
node : ESTree . Node ,
775
794
tokens : Token [ ] ,
@@ -785,6 +804,7 @@ export class ScriptLetContext {
785
804
const restoreCallback : RestoreCallback = {
786
805
start : startOffset ,
787
806
end : endOffset ,
807
+ nodeType,
788
808
callback,
789
809
} ;
790
810
this . restoreCallbacks . push ( restoreCallback ) ;
@@ -918,6 +938,7 @@ export class ScriptLetContext {
918
938
return ;
919
939
}
920
940
if (
941
+ orderedRestoreCallback . nodeType === node . type &&
921
942
orderedRestoreCallback . start <= node . range ! [ 0 ] &&
922
943
node . range ! [ 1 ] <= orderedRestoreCallback . end
923
944
) {
0 commit comments