Skip to content

Commit

Permalink
Chore: Rename
Browse files Browse the repository at this point in the history
  • Loading branch information
WilsonZiweiWang committed Nov 16, 2023
1 parent 43751d0 commit 3e0d0b6
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion server/src/__tests__/semanticTokens.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import { analyzer } from '../tree-sitter/analyzer'
import { generateParser } from '../tree-sitter/parser'
import { getParsedTokens, TOKEN_LEGEND } from '../semanticTokensProvider'
import { getParsedTokens, TOKEN_LEGEND } from '../semanticTokens'
import { FIXTURE_DOCUMENT } from './fixtures/fixtures'

const DUMMY_URI = 'dummy_uri'
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion server/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import { generateEmbeddedLanguageDocs, getEmbeddedLanguageDocInfosOnPosition } f
import { embeddedLanguageDocsManager } from './embedded-languages/documents-manager'
import { RequestMethod, type RequestParams, type RequestResult } from './lib/src/types/requests'
import { NotificationMethod, type NotificationParams } from './lib/src/types/notifications'
import { getSemanticTokens, legend } from './semanticTokensProvider'
import { getSemanticTokens, legend } from './semanticTokens'
// Create a connection for the server. The connection uses Node's IPC as a transport
const connection: Connection = createConnection(ProposedFeatures.all)
const documents = new TextDocuments<TextDocument>(TextDocument)
Expand Down

0 comments on commit 3e0d0b6

Please sign in to comment.