blob: f85244ceb8a711bd1b0608462cd62cf858de830c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.e4.languages.javascript.jsdi.request;
import org.eclipse.e4.languages.javascript.jsdi.ThreadReference;
public interface StepRequest extends EventRequest {
public static final int STEP_INTO = 1;
public static final int STEP_OVER = 2;
public static final int STEP_OUT = 3;
int step();
ThreadReference thread();
}