blob: 84b473bf4b3440a6876bc3243cda63d4021da887 [file] [log] [blame]
package org.jetbrains.debugger;
/**
* JavaScript debugger step actions.
*/
public enum StepAction {
/**
* Resume the JavaScript execution.
*/
CONTINUE,
/**
* Step into the current statement.
*/
IN,
/**
* Step over the current statement.
*/
OVER,
/**
* Step out of the current function.
*/
OUT
}