expressions property

List<RuntimeCompletionExpression>? expressions
getter/setter pair

The list of sub-expressions in the code for which the client wants to provide runtime types. It does not have to be the full list of expressions requested by the server, for missing expressions their static types will be used.

When this field is omitted, the server will return completion suggestions only when there are no interesting sub-expressions in the given code. The client may provide an empty list, in this case the server will return completion suggestions.

Implementation

List<RuntimeCompletionExpression>? expressions;