(m: Module)
| 1064 | } |
| 1065 | |
| 1066 | updateModule(m: Module) { |
| 1067 | this.transpiledModules[m.path].module = m; |
| 1068 | |
| 1069 | triggerFileWatch(m.path, 'change'); |
| 1070 | return this.getTranspiledModulesByModule(m).map(tModule => { |
| 1071 | tModule.update(m); |
| 1072 | |
| 1073 | return tModule; |
| 1074 | }); |
| 1075 | } |
| 1076 | |
| 1077 | resolveTranspiledModuleAsync = async ( |
| 1078 | path: string, |
no test coverage detected