namespace Jint.Runtime.Debugger;
///
/// Choice of handling for script debugger statements.
///
public enum DebuggerStatementHandling
{
///
/// No action will be taken when encountering a debugger statement.
///
Ignore,
///
/// debugger statements will trigger debugging through .
///
Clr,
///
/// debugger statements will trigger a break in Jint's DebugHandler. See .
///
Script
}