@@ -477,15 +477,15 @@ class ModuleLoader {
477
477
/**
478
478
* @see {@link CustomizedModuleLoader.register }
479
479
*/
480
- register ( specifier , parentURL , data , transferList ) {
480
+ register ( specifier , parentURL , data , transferList , isInternal ) {
481
481
if ( ! this . #customizations) {
482
482
// `CustomizedModuleLoader` is defined at the bottom of this file and
483
483
// available well before this line is ever invoked. This is here in
484
484
// order to preserve the git diff instead of moving the class.
485
485
// eslint-disable-next-line no-use-before-define
486
486
this . setCustomizations ( new CustomizedModuleLoader ( ) ) ;
487
487
}
488
- return this . #customizations. register ( `${ specifier } ` , `${ parentURL } ` , data , transferList ) ;
488
+ return this . #customizations. register ( `${ specifier } ` , `${ parentURL } ` , data , transferList , isInternal ) ;
489
489
}
490
490
491
491
/**
@@ -617,10 +617,11 @@ class CustomizedModuleLoader {
617
617
* @param {any } [data] Arbitrary data to be passed from the custom loader
618
618
* (user-land) to the worker.
619
619
* @param {any[] } [transferList] Objects in `data` that are changing ownership
620
+ * @param {boolean } [isInternal] For internal loaders that should not be publicly exposed.
620
621
* @returns {{ format: string, url: URL['href'] } }
621
622
*/
622
- register ( originalSpecifier , parentURL , data , transferList ) {
623
- return hooksProxy . makeSyncRequest ( 'register' , transferList , originalSpecifier , parentURL , data ) ;
623
+ register ( originalSpecifier , parentURL , data , transferList , isInternal ) {
624
+ return hooksProxy . makeSyncRequest ( 'register' , transferList , originalSpecifier , parentURL , data , isInternal ) ;
624
625
}
625
626
626
627
/**
0 commit comments