()
| 54 | } |
| 55 | |
| 56 | function refreshClicked() { |
| 57 | // Passes a message back to the extension context |
| 58 | vscode.postMessage({ |
| 59 | type: "refresh", |
| 60 | body: {} |
| 61 | }); |
| 62 | } |
| 63 | |
| 64 | // Sets up an event listener to listen for messages passed from the extension context |
| 65 | // and executes code based on the message that is received |
nothing calls this directly
no test coverage detected