(self)
| 338 | self.notify_target_changes() |
| 339 | |
| 340 | def notify_target_changes(self): |
| 341 | # TODO: increment diff change and notify # |
| 342 | if self.new_version: |
| 343 | send({ |
| 344 | "jsonrpc": "2.0", |
| 345 | "method": "buildTarget/didChange", |
| 346 | "params": { |
| 347 | "changes": None |
| 348 | }, |
| 349 | }) |
| 350 | else: |
| 351 | for v in self.observed_uri: |
| 352 | self.notify_option_changed(v) |
| 353 | |
| 354 | |
| 355 | # valid after build_initialize. access before should throw |
no test coverage detected