* Returns the used exports. * @param {Module} module the module * @param {RuntimeSpec} runtime the runtime * @returns {false | true | SortableSet<string> | null} the used exports * false: module is not used at all. * true: the module namespace/object export is used. * SortableSet<string>
(module, runtime)
| 782 | * null: unknown, worst case should be assumed. |
| 783 | */ |
| 784 | getUsedExports(module, runtime) { |
| 785 | const mgm = this._getModuleGraphModule(module); |
| 786 | return mgm.exports.getUsedExports(runtime); |
| 787 | } |
| 788 | |
| 789 | /** |
| 790 | * Gets pre order index. |
no test coverage detected