blob: d0912b7c1ae645b567f8d0dc57478b58d040bfef [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 xored software, Inc.
*
* 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.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* xored software, Inc. - initial API and Implementation (Alex Panchenko)
*******************************************************************************/
package org.eclipse.dltk.debug.core;
import org.eclipse.dltk.debug.core.IDebugOptions.BooleanOption;
public class DebugOption {
/**
* All commands should be treated as asynchronous
*/
public static final BooleanOption DBGP_ASYNC = new BooleanOption(
"DBGP_ASYNC", true); //$NON-NLS-1$
/**
* <code>breakpoint_update</code> command can update line number
*/
public static final BooleanOption DBGP_BREAKPOINT_UPDATE_LINE_NUMBER = new BooleanOption(
"DBGP_BREAKPOINT_UPDATE_LINE_NUMBER", true); //$NON-NLS-1$
/**
* Debugging engine supports different data types. Should be
* <code>false</code> for TCL.
*/
public static final BooleanOption ENGINE_SUPPORT_DATATYPES = new BooleanOption(
"ENGINE_SUPPORT_DATATYPES", true); //$NON-NLS-1$
/**
* Debugging engine initially stops before first line. Should be
* <code>false</code> for TCL.
*/
public static final BooleanOption ENGINE_STOP_BEFORE_CODE = new BooleanOption(
"ENGINE_STOP_BEFORE_CODE", true); //$NON-NLS-1$
/**
* Should test if thread has valid current stack on initial connect. Should
* be <code>true</code> for TCL.
*/
public static final BooleanOption ENGINE_VALIDATE_STACK = new BooleanOption(
"ENGINE_VALIDATE_STACK", false); //$NON-NLS-1$
}