DocumentCache

data class DocumentCache(val functionCalls: List<FunctionCall>)

Cache for various precomputed attributes of a TextDocument.

This allows avoiding repeated computation of expensive operations like tokenization when the document content hasn't changed.

Parameters

functionCalls

the list of function calls identified and tokenized in the document

Constructors

Link copied to clipboard
constructor(functionCalls: List<FunctionCall>)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard