Lines Matching refs:exports
238 // The CJS exports object of the module.
239 this.exports = {};
329 // exports from core modules as this can trigger unnecessary getters.
331 this.exportKeys = internal ? [] : ObjectKeys(this.exports);
335 return this.exports;
351 this.setExport('default', builtin.exports);
353 // Ensure immediate sync execution to capture exports now
359 // Provide named exports for all builtin libraries so that the libraries
361 // as the entire namespace (module.exports) and updates when this function is
370 getOwn(this.exports, exportName, this.exports));
377 return this.exports;
390 fn(this.exports, requireFn, this, process, internalBinding, primordials);
400 return this.exports;
404 // Think of this as module.exports in this file even though it is not