Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit324949c

Browse files
committed
Reimplement Reference Items / Query Interval using the new approach.
1 parent906d33f commit324949c

File tree

9 files changed

+305
-251
lines changed

9 files changed

+305
-251
lines changed

‎.vscode/launch.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"request":"launch",
88
"args": [
99
"--extensionDevelopmentPath=${workspaceFolder}",
10-
"${workspaceFolder}/test"
10+
"${workspaceFolder}/example"
1111
],
1212
"outFiles": [
1313
"${workspaceFolder}/out/**/*.js"

‎src/connection.ts‎

Lines changed: 0 additions & 190 deletions
This file was deleted.

‎src/cxxrtl/client.ts‎

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,23 +47,23 @@ export class Connection {
4747
privatetraceSend(packet:proto.ClientPacket){
4848
this.timestamps.push(newDate());
4949
if(packet.type==='greeting'){
50-
console.debug(`C>S`,packet);
50+
console.debug(`[CXXRTL]C>S`,packet);
5151
}elseif(packet.type==='command'){
52-
console.debug(`C>S#${this.sendIndex++}`,packet);
52+
console.debug(`[CXXRTL]C>S#${this.sendIndex++}`,packet);
5353
}
5454
}
5555

5656
privatetraceRecv(packet:proto.ServerPacket){
5757
if(packet.type==='greeting'){
58-
console.debug(`S>C`,packet);
58+
console.debug(`[CXXRTL]S>C`,packet);
5959
}elseif(packet.type==='response'){
6060
constelapsed=newDate().getTime()-this.timestamps.shift()!.getTime();
61-
console.debug(`S>C#${this.recvIndex++}`,packet,`(${elapsed}ms)`);
61+
console.debug(`[CXXRTL]S>C#${this.recvIndex++}`,packet,`(${elapsed}ms)`);
6262
}elseif(packet.type==='error'){
6363
this.timestamps.shift();
64-
console.error(`S>C#${this.recvIndex++}`,packet);
64+
console.error(`[CXXRTL]S>C#${this.recvIndex++}`,packet);
6565
}elseif(packet.type==='event'){
66-
console.debug(`S>C`,packet);
66+
console.debug(`[CXXRTL]S>C`,packet);
6767
}
6868
}
6969

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp