From 84784c60b9d80078e2891aa5e87175110d82b1f8 Mon Sep 17 00:00:00 2001 From: vain0x Date: Tue, 8 Jan 2019 00:45:38 +0900 Subject: [PATCH] refactor: Remove unnecessary imports --- lsp/src/curage-server.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/lsp/src/curage-server.ts b/lsp/src/curage-server.ts index 1c9871d..67a058b 100644 --- a/lsp/src/curage-server.ts +++ b/lsp/src/curage-server.ts @@ -12,8 +12,6 @@ import { Position, Range, DidCloseTextDocumentParams, - DocumentSymbolParams, - DocumentSymbol, DocumentHighlight, DocumentHighlightKind, TextDocumentPositionParams, @@ -22,9 +20,7 @@ import { listenToLSPClient, sendNotify, sendResponse, - sendRequest, } from "./communication" -import { SymbolKind } from "vscode"; interface Message { jsonrpc: string, @@ -208,7 +204,7 @@ export const tokenize = (source: string): Token[] => { // All of elements are undefined except for the matched alternative. const [ - _match, +, space, int, name,