* Gets ordered owned exports. * @returns {Iterable<ExportInfo>} all owned exports in order
()
| 191 | * @returns {Iterable<ExportInfo>} all owned exports in order |
| 192 | */ |
| 193 | get orderedOwnedExports() { |
| 194 | if (!this._exportsAreOrdered) { |
| 195 | this._sortExports(); |
| 196 | } |
| 197 | return this._exports.values(); |
| 198 | } |
| 199 | |
| 200 | /** |
| 201 | * Returns all exports in any order. |
nothing calls this directly
no test coverage detected