Lines Matching refs:identifier
102 let { identifier } = options;
103 if (identifier !== undefined) {
104 validateString(identifier, 'options.identifier');
106 identifier = `${defaultModuleName}(${globalModuleId++})`;
109 identifier = `${defaultModuleName}(${curId})`;
112 identifier = `${defaultModuleName}(0)`;
124 this[kWrap] = new ModuleWrap(identifier, context, sourceText,
136 this[kWrap] = new ModuleWrap(identifier, context,
150 get identifier() {
242 o.identifier = this.identifier;
275 identifier,
297 identifier,
308 const promises = this[kWrap].link(async (identifier, attributes) => {
309 const module = await linker(identifier, this, { attributes, assert: attributes });
317 throw new ERR_VM_MODULE_LINK_FAILURE(`request for '${identifier}' resolved to an errored module`, module.error);
404 const { context, identifier } = options;
410 identifier,