* * Function used to shortcut when `--input-type=module-typescript` is set. * @param {string} source * @param {boolean} print
(source, print)
| 383 | * @param {boolean} print |
| 384 | */ |
| 385 | function parseAndEvalModuleTypeScript(source, print) { |
| 386 | // We know its a TypeScript module, we can safely emit the experimental warning. |
| 387 | const strippedSource = stripTypeScriptModuleTypes(source, kEvalTag); |
| 388 | evalModuleEntryPoint(strippedSource, print); |
| 389 | } |
| 390 | |
| 391 | /** |
| 392 | * Function used to shortcut when `--input-type=commonjs-typescript` is set |
no test coverage detected
searching dependent graphs…