(path)
| 348 | } |
| 349 | |
| 350 | notifyWatchers (path) { |
| 351 | if (!this.watchlist || !this.watchlist[path]) return this |
| 352 | for (let i = 0; i < this.watchlist[path].length; i++) { |
| 353 | this.watchlist[path][i]() |
| 354 | } |
| 355 | } |
| 356 | |
| 357 | isEnabled () { |
| 358 | return !this.root || this.root.isEnabled() |
no outgoing calls
no test coverage detected