* * @param {string} source Source code of the module. * @param {string} url URL of the module. * @param {{ isMain?: boolean }|undefined} context - context object containing module metadata. * @returns {object} The module wrap object.
(source, url, context = kEmptyObject)
| 210 | * @returns {object} The module wrap object. |
| 211 | */ |
| 212 | createModuleWrap(source, url, context = kEmptyObject) { |
| 213 | return compileSourceTextModule(url, source, kUser, context); |
| 214 | } |
| 215 | |
| 216 | /** |
| 217 | * |
no test coverage detected