Skip to content
This repository was archived by the owner on Dec 23, 2021. It is now read-only.

Commit d82263b

Browse files
committed
Lint files
1 parent 0ad646b commit d82263b

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

src/debugger/debugAdapter.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
import { DebugAdapterTracker, DebugConsole, DebugSession } from "vscode";
22
import { MessagingService } from "../service/messagingService";
33
import { DEBUG_COMMANDS } from "../view/constants";
4-
<<<<<<< HEAD
5-
import { DebuggerCommunicationServer } from "../debuggerCommunicationServer";
6-
=======
7-
>>>>>>> dev
84

95
export class DebugAdapter implements DebugAdapterTracker {
106
private readonly console: DebugConsole | undefined;

src/debuggerCommunicationServer.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,9 @@ export class DebuggerCommunicationServer {
7070
this.isPendingResponse = true;
7171
}
7272
}
73+
public disconnectSocketIo() {
74+
this.serverIo.emit(DEBUGGER_MESSAGES.EMITTER.DISCONNECT, {});
75+
}
7376

7477
private initHttpServer(): void {
7578
this.serverHttp.listen(this.port);
@@ -112,9 +115,6 @@ export class DebuggerCommunicationServer {
112115
});
113116
});
114117
}
115-
public disconnectSocketIo() {
116-
this.serverIo.emit(DEBUGGER_MESSAGES.EMITTER.DISCONNECT, {});
117-
}
118118

119119
private handleState(data: any): void {
120120
try {

src/view/components/toolbar/InputSlider.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33

44
import * as React from "react";
55
import { VIEW_STATE, WEBVIEW_MESSAGES } from "../../constants";
6+
import { ViewStateContext } from "../../context";
67
import "../../styles/InputSlider.css";
78
import { sendMessage } from "../../utils/MessageUtils";
89
import { ISliderProps } from "../../viewUtils";
9-
import { ViewStateContext } from "../../context";
1010

1111
class InputSlider extends React.Component<ISliderProps, any, any> {
1212
constructor(props: ISliderProps) {

0 commit comments

Comments
 (0)