File tree Expand file tree Collapse file tree 2 files changed +0
-15
lines changed Expand file tree Collapse file tree 2 files changed +0
-15
lines changed Original file line number Diff line number Diff line change 1
- // <reference types="@types/dom-serial" />
2
1
import * as vscode from "vscode" ;
3
2
4
3
import { BaseClient } from "../../clients/base-client" ;
@@ -110,17 +109,5 @@ export class WebUsbClient extends BaseClient {
110
109
this . _reader . releaseLock ( ) ;
111
110
}
112
111
}
113
- // this._reader = this._port?.readable.pipeThrough(new TransformStream(new MessageTransformer())).getReader();
114
- // while (this._reader) {
115
- // const { done, value } = await this._reader.read();
116
-
117
- // if (value) {
118
- // this.onData(value);
119
- // }
120
-
121
- // if (done) {
122
- // break;
123
- // }
124
- // }
125
112
}
126
113
}
Original file line number Diff line number Diff line change 1
-
2
1
import * as mpy from "@pybricks/mpy-cross-v6" ;
3
2
4
3
import * as vscode from "vscode" ;
@@ -59,7 +58,6 @@ export async function activate(context: vscode.ExtensionContext) {
59
58
return ;
60
59
}
61
60
62
-
63
61
await vscode . window . withProgress (
64
62
{
65
63
location : vscode . ProgressLocation . Notification ,
You can’t perform that action at this time.
0 commit comments