@@ -54,7 +54,7 @@ export class ModuleRunner {
54
54
Promise < EvaluatedModuleNode >
55
55
> ( )
56
56
57
- private destroyed = false
57
+ private closed = false
58
58
59
59
constructor (
60
60
public options : ModuleRunnerOptions ,
@@ -100,18 +100,18 @@ export class ModuleRunner {
100
100
* Clears all caches, removes all HMR listeners, and resets source map support.
101
101
* This method doesn't stop the HMR connection.
102
102
*/
103
- public async destroy ( ) : Promise < void > {
103
+ public async close ( ) : Promise < void > {
104
104
this . resetSourceMapSupport ?.( )
105
105
this . clearCache ( )
106
106
this . hmrClient = undefined
107
- this . destroyed = true
107
+ this . closed = true
108
108
}
109
109
110
110
/**
111
- * Returns `true` if the runtime has been destroyed by calling `destroy ()` method.
111
+ * Returns `true` if the runtime has been closed by calling `close ()` method.
112
112
*/
113
- public isDestroyed ( ) : boolean {
114
- return this . destroyed
113
+ public isClosed ( ) : boolean {
114
+ return this . closed
115
115
}
116
116
117
117
private processImport (
@@ -243,8 +243,8 @@ export class ModuleRunner {
243
243
importer : string | undefined ,
244
244
cachedModule : EvaluatedModuleNode | undefined ,
245
245
) : Promise < EvaluatedModuleNode > {
246
- if ( this . destroyed ) {
247
- throw new Error ( `Vite module runner has been destroyed .` )
246
+ if ( this . closed ) {
247
+ throw new Error ( `Vite module runner has been closed .` )
248
248
}
249
249
250
250
this . debug ?.( '[module runner] fetching' , url )
@@ -373,7 +373,7 @@ export class ModuleRunner {
373
373
enumerable : true ,
374
374
get : ( ) => {
375
375
if ( ! this . hmrClient ) {
376
- throw new Error ( `[module runner] HMR client was destroyed .` )
376
+ throw new Error ( `[module runner] HMR client was closed .` )
377
377
}
378
378
this . debug ?.( '[module runner] creating hmr context for' , mod . url )
379
379
hotContext ||= new HMRContext ( this . hmrClient , mod . url )
0 commit comments