Package org.eclipse.lsp4j.debug
Interface EvaluateArgumentsContext
-
public interface EvaluateArgumentsContext
The context in which the evaluate request is used.Possible values include - but not limited to those defined in
EvaluateArgumentsContext
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
CLIPBOARD
evaluate is called to generate clipboard contents.static java.lang.String
HOVER
evaluate is called to generate the debug hover contents.static java.lang.String
REPL
evaluate is called from a REPL context.static java.lang.String
VARIABLES
evaluate is called from a variables view context.static java.lang.String
WATCH
evaluate is called from a watch view context.
-
-
-
Field Detail
-
WATCH
static final java.lang.String WATCH
evaluate is called from a watch view context.- See Also:
- Constant Field Values
-
REPL
static final java.lang.String REPL
evaluate is called from a REPL context.- See Also:
- Constant Field Values
-
HOVER
static final java.lang.String HOVER
evaluate is called to generate the debug hover contents. This value should only be used if the corresponding capabilityCapabilities.getSupportsEvaluateForHovers()
is true.- See Also:
- Constant Field Values
-
CLIPBOARD
static final java.lang.String CLIPBOARD
evaluate is called to generate clipboard contents. This value should only be used if the corresponding capabilityCapabilities.getSupportsClipboardContext()
is true.- See Also:
- Constant Field Values
-
VARIABLES
static final java.lang.String VARIABLES
evaluate is called from a variables view context.Since 1.55
- See Also:
- Constant Field Values
-
-