(text: string)
| 295 | // e.g.view, remove, clean |
| 296 | // * Permissions are handled host-side |
| 297 | public requestRunTextInTerm(text: string): void { |
| 298 | if (this._isStarted) { |
| 299 | void liveShareRequest(Callback.RequestRunTextInTerm, text); |
| 300 | } |
| 301 | } |
| 302 | // The session watcher relies on files for providing many functions to vscode-R. |
| 303 | // As LiveShare does not allow for exposing files outside a given workspace, |
| 304 | // the guest must rely on the host sending the content of a given file, in place |
no test coverage detected