InlineValuesProvider
The inline values provider interface defines the contract between extensions and the editor's debugger inline values feature. In this contract the provider returns inline value information for a given document range and the editor shows this information in the editor at the end of lines.
Functions
Link copied to clipboard
abstract fun provideInlineValues( document: TextDocument, viewPort: Range, context: InlineValueContext, token: CancellationToken): ProviderResult<ReadonlyArray<InlineValue>>
Provide "inline value" information for a given document and range. The editor calls this method whenever debugging stops in the given document. The returned inline values information is rendered in the editor at the end of lines.