blob: 9209a5bb146d5dc49eda1ad9b0741f7b16a48d03 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2017 Kloesch 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:
* Kloesch - initial API and implementation
*******************************************************************************/
package org.eclipse.ease.lang.python.debugger;
import org.eclipse.ease.Script;
/**
* Interface for execution tracing in Python.
*
* This object is the link between Eclipse and the Python implementation.
*
*/
public interface ICodeTracer {
/**
* Runs the given script via the code tracer in Python.
*
* @param script
* Script to be run via code tracer.
* @param filename
* Filename for script.
*/
void run(Script script, String filename);
}