blob: 0fa27645f1efbd2440d323a0c96a84342997f966 [file] [log] [blame]
/**
* Copyright (c) 2017, 2020 Kichwa Coders Ltd. and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
package org.eclipse.lsp4j.debug;
/**
* The context in which the evaluate request is run.
* <p>
* Possible values include - but not limited to those defined in {@link EvaluateArgumentsContext}
*/
@SuppressWarnings("all")
public interface EvaluateArgumentsContext {
/**
* evaluate is run in a watch.
*/
static final String WATCH = "watch";
/**
* evaluate is run from REPL console.
*/
static final String REPL = "repl";
/**
* evaluate is run from a data hover.
*/
static final String HOVER = "hover";
/**
* evaluate is run to generate the value that will be stored in the clipboard.
* The attribute is only honored by a
* debug adapter if the capability 'supportsClipboardContext' is true.
*/
static final String CLIPBOARD = "clipboard";
}