@gmb/bitmark-parser - v7.2.0
    Preparing search index...

    Function resolve

    • One item of the list complete returns at position, with its Markdown documentation filled in — LSP completionItem/resolve (PLAN-202). complete ships no documentation; an editor calls this for the one item it is about to show (Monaco's resolveCompletionItem), passing the item back as it was listed. The item is found by label and kind; when the list no longer holds it (the text or the cursor moved on) the item is returned as it was given.

      Parameters

      • input: string

        The bitmark source complete was asked about.

      • position: Position

        The position complete was asked at.

      • item: CompletionItem

        The item as complete listed it (label and kind are read).

      • options: CompleteOptions = {}

        As for complete.

      Returns CompletionItem

      The item with documentation set where the parser has any.

      UnsupportedFeatureError on a variant built without editor; an error when position.line is past the end of the text, or when the input is a JSON document.