Lines Matching refs:kWrap
73 const kWrap = Symbol('kWrap');
124 this[kWrap] = new ModuleWrap(identifier, context, sourceText,
136 this[kWrap] = new ModuleWrap(identifier, context,
145 registerModule(this[kWrap], registry);
151 if (this[kWrap] === undefined) {
154 return this[kWrap].url;
158 if (this[kWrap] === undefined) {
165 if (this[kWrap] === undefined) {
168 if (this[kWrap].getStatus() < kInstantiated) {
171 return this[kWrap].getNamespace();
175 if (this[kWrap] === undefined) {
178 return STATUS_MAP[this[kWrap].getStatus()];
182 if (this[kWrap] === undefined) {
185 if (this[kWrap].getStatus() !== kErrored) {
188 return this[kWrap].getError();
192 if (this[kWrap] === undefined) {
203 this[kWrap].instantiate();
207 if (this[kWrap] === undefined) {
221 const status = this[kWrap].getStatus();
229 await this[kWrap].evaluate(timeout, breakOnSigint);
233 if (this[kWrap] === undefined) {
308 const promises = this[kWrap].link(async (identifier, attributes) => {
310 if (module[kWrap] === undefined) {
322 return module[kWrap];
341 if (this[kWrap] === undefined) {
345 this[kDependencySpecifiers] = this[kWrap].getStaticDependencySpecifiers();
351 if (this[kWrap] === undefined) {
364 if (this[kWrap] === undefined) {
380 return this[kWrap].createCachedData();
413 this[kLink] = () => this[kWrap].link(() => {
419 if (this[kWrap] === undefined) {
423 if (this[kWrap].getStatus() < kInstantiated) {
426 this[kWrap].setExport(name, value);
436 if (!m || m[kWrap] === undefined) {