AsyncLspServer
class AsyncLspServer()
Provides Language Server Protocol functionality for code intelligence to provide IDE-like features such as code completion, symbol search, and more.
AsyncLspServer.__init__
def __init__(language_id: LspLanguageId, path_to_project: str, toolbox_api: ToolboxApi, sandbox_id: str)
Initializes a new LSP server instance.
Arguments:
language_id
LspLanguageId - The language server type (e.g., LspLanguageId.TYPESCRIPT).path_to_project
str - Absolute path to the project root directory.toolbox_api
ToolboxApi - API client for Sandbox operations.instance
SandboxInstance - The Sandbox instance this server belongs to.
AsyncLspServer.start
@intercept_errors(message_prefix="Failed to start LSP server: ")async def start() -> None
Starts the language server.
This method must be called before using any other LSP functionality. It initializes the language server for the specified language and project.
Example:
lsp = sandbox.create_lsp_server("typescript", "workspace/project")await lsp.start() # Initialize the server# Now ready for LSP operations
AsyncLspServer.stop
@intercept_errors(message_prefix="Failed to stop LSP server: ")async def stop() -> None
Stops the language server.
This method should be called when the LSP server is no longer needed to free up system resources.
Example:
# When done with LSP featuresawait lsp.stop() # Clean up resources
AsyncLspServer.did_open
@intercept_errors(message_prefix="Failed to open file: ")async def did_open(path: str) -> None
Notifies the language server that a file has been opened.
This method should be called when a file is opened in the editor to enable language features like diagnostics and completions for that file. The server will begin tracking the file’s contents and providing language features.
Arguments:
path
str - Path to the opened file. Relative paths are resolved based on the project path set in the LSP server constructor.
Example:
# When opening a file for editingawait lsp.did_open("workspace/project/src/index.ts")# Now can get completions, symbols, etc. for this file
AsyncLspServer.did_close
@intercept_errors(message_prefix="Failed to close file: ")async def did_close(path: str) -> None
Notify the language server that a file has been closed.
This method should be called when a file is closed in the editor to allow the language server to clean up any resources associated with that file.
Arguments:
path
str - Path to the closed file. Relative paths are resolved based on the project path set in the LSP server constructor.
Example:
# When done editing a fileawait lsp.did_close("workspace/project/src/index.ts")
AsyncLspServer.document_symbols
@intercept_errors(message_prefix="Failed to get symbols from document: ")async def document_symbols(path: str) -> List[LspSymbol]
Gets symbol information (functions, classes, variables, etc.) from a document.
Arguments:
path
str - Path to the file to get symbols from. Relative paths are resolved based on the project path set in the LSP server constructor.
Returns:
List[LspSymbol]
- List of symbols in the document. Each symbol includes:- name: The symbol’s name
- kind: The symbol’s kind (function, class, variable, etc.)
- location: The location of the symbol in the file
Example:
# Get all symbols in a filesymbols = await lsp.document_symbols("workspace/project/src/index.ts")for symbol in symbols: print(f"{symbol.kind} {symbol.name}: {symbol.location}")
AsyncLspServer.workspace_symbols
@deprecated( reason= "Method is deprecated. Use `sandbox_symbols` instead. This method will be removed in a future version.")async def workspace_symbols(query: str) -> List[LspSymbol]
Searches for symbols matching the query string across all files in the Sandbox.
Arguments:
query
str - Search query to match against symbol names.
Returns:
List[LspSymbol]
- List of matching symbols from all files.
AsyncLspServer.sandbox_symbols
@intercept_errors(message_prefix="Failed to get symbols from sandbox: ")async def sandbox_symbols(query: str) -> List[LspSymbol]
Searches for symbols matching the query string across all files in the Sandbox.
Arguments:
query
str - Search query to match against symbol names.
Returns:
List[LspSymbol]
- List of matching symbols from all files. Each symbol includes:- name: The symbol’s name
- kind: The symbol’s kind (function, class, variable, etc.)
- location: The location of the symbol in the file
Example:
# Search for all symbols containing "User"symbols = await lsp.sandbox_symbols("User")for symbol in symbols: print(f"{symbol.name} in {symbol.location}")
AsyncLspServer.completions
@intercept_errors(message_prefix="Failed to get completions: ")async def completions(path: str, position: Position) -> CompletionList
Gets completion suggestions at a position in a file.
Arguments:
path
str - Path to the file. Relative paths are resolved based on the project path set in the LSP server constructor.position
Position - Cursor position to get completions for.
Returns:
CompletionList
- List of completion suggestions. The list includes:- isIncomplete: Whether more items might be available
- items: List of completion items, each containing:
- label: The text to insert
- kind: The kind of completion
- detail: Additional details about the item
- documentation: Documentation for the item
- sortText: Text used to sort the item in the list
- filterText: Text used to filter the item
- insertText: The actual text to insert (if different from label)
Example:
# Get completions at a specific positionpos = Position(line=10, character=15)completions = await lsp.completions("workspace/project/src/index.ts", pos)for item in completions.items: print(f"{item.label} ({item.kind}): {item.detail}")
LspLanguageId
class LspLanguageId(Enum)
Language IDs for Language Server Protocol (LSP).
Enum Members:
PYTHON
(“python”)TYPESCRIPT
(“typescript”)JAVASCRIPT
(“javascript”)
Position
class Position()
Represents a zero-based position in a text document, specified by line number and character offset.
Attributes:
line
int - Zero-based line number in the document.character
int - Zero-based character offset on the line.
Position.__init__
def __init__(line: int, character: int)
Initialize a new Position instance.
Arguments:
line
int - Zero-based line number in the document.character
int - Zero-based character offset on the line.