Skip to content

Commit

Permalink
Move find_symbols into the command library
Browse files Browse the repository at this point in the history
Reviewed By: pradeep90

Differential Revision: D35765552

fbshipit-source-id: 4c2970bc8f70b8ff6ac40b0a022aace8250e56ac
  • Loading branch information
grievejia authored and facebook-github-bot committed Apr 20, 2022
1 parent 9059b1b commit 842d8a3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,17 @@
from typing import List

import testslide
from tools.pyre.client.commands.language_server_protocol import (

from ..find_symbols import (
UnparseableError,
parse_source_and_collect_symbols,
)
from ..language_server_protocol import (
DocumentSymbolsResponse,
LspPosition,
LspRange,
SymbolKind,
)
from tools.pyre.client.find_symbols import (
UnparseableError,
parse_source_and_collect_symbols,
)


class FindSymbolTests(testslide.TestCase):
Expand Down

0 comments on commit 842d8a3

Please sign in to comment.