blob: 01666456f42007ed862552e2b336f518e176ca5f [file] [log] [blame]
package com.jetbrains.python.debugger;
import com.intellij.xdebugger.frame.XValueChildrenList;
import org.jetbrains.annotations.Nullable;
/**
* Facade to access python variables frame
*
* @author traff
*/
public interface PyFrameAccessor {
PyDebugValue evaluate(final String expression, final boolean execute, boolean doTrunc) throws PyDebuggerException;
@Nullable
XValueChildrenList loadFrame() throws PyDebuggerException;
XValueChildrenList loadVariable(PyDebugValue var) throws PyDebuggerException;
void changeVariable(PyDebugValue variable, String expression) throws PyDebuggerException;
@Nullable
PyReferrersLoader getReferrersLoader();
}