@returns {JSONFileItem}
()
| 155 | |
| 156 | /** @returns {JSONFileItem} */ |
| 157 | getCourseFileItem() { |
| 158 | if (!this.courseFileItem) { |
| 159 | const err = new Error(`Could not find course item for ${this.path}`); |
| 160 | err.number = 10009; |
| 161 | throw err; |
| 162 | } |
| 163 | return this.courseFileItem; |
| 164 | } |
| 165 | |
| 166 | /** |
| 167 | * @param {string} id |
no outgoing calls
no test coverage detected