CompletionPathResult

data class CompletionPathResult(val path: List<String>, val name: String, val from: DocPos)

Result of completionPath.

Parameters

path

The dotted access segments before the final name, e.g. for console.log this is ["console"].

name

The identifier being completed (e.g. "log").

from

The document offset where the completed text starts.

Constructors

Link copied to clipboard
constructor(path: List<String>, name: String, from: DocPos)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard