blob: 9ecdb7a54ae9bf416f9791444bfe38554f1ae57c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 Christian Pontesegger and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Christian Pontesegger - initial API and implementation
*******************************************************************************/
package org.eclipse.ease.lang.javascript.rhino.debugger;
import org.eclipse.ease.Script;
public class LineNumberDebugger extends RhinoDebugger {
public LineNumberDebugger(RhinoDebuggerEngine engine) {
super(engine, false);
}
@Override
protected void processLine(Script script, int lineNumber, boolean checkBreakpoints) {
// we do not want to check for breakpoints, etc
}
}