Merge pull request #257930 from turansky/patch-1

fix: `EvaluatableExpression` properties jsdoc
This commit is contained in:
Matt Bierner 2025-07-28 12:00:01 -07:00 committed by GitHub
commit 3083258a55
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -3133,12 +3133,12 @@ declare module 'vscode' {
*/
export class EvaluatableExpression {
/*
/**
* The range is used to extract the evaluatable expression from the underlying document and to highlight it.
*/
readonly range: Range;
/*
/**
* If specified the expression overrides the extracted expression.
*/
readonly expression?: string | undefined;