summaryrefslogtreecommitdiff
path: root/python/pydevSrc/com/jetbrains/python/debugger/IPyDebugProcess.java
diff options
context:
space:
mode:
Diffstat (limited to 'python/pydevSrc/com/jetbrains/python/debugger/IPyDebugProcess.java')
-rw-r--r--python/pydevSrc/com/jetbrains/python/debugger/IPyDebugProcess.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/python/pydevSrc/com/jetbrains/python/debugger/IPyDebugProcess.java b/python/pydevSrc/com/jetbrains/python/debugger/IPyDebugProcess.java
index ab6ccfab0bc6..762225f18f12 100644
--- a/python/pydevSrc/com/jetbrains/python/debugger/IPyDebugProcess.java
+++ b/python/pydevSrc/com/jetbrains/python/debugger/IPyDebugProcess.java
@@ -1,6 +1,8 @@
package com.jetbrains.python.debugger;
import com.intellij.execution.ui.ConsoleViewContentType;
+import com.intellij.xdebugger.frame.XValueChildrenList;
+import com.jetbrains.python.debugger.pydev.PyDebugCallback;
import java.io.IOException;
@@ -12,7 +14,7 @@ public interface IPyDebugProcess extends PyFrameAccessor {
void threadSuspended(PyThreadInfo thread);
- boolean isVariable(String name);
+ boolean canSaveToTemp(String name);
void threadResumed(PyThreadInfo thread);
@@ -25,4 +27,6 @@ public interface IPyDebugProcess extends PyFrameAccessor {
void recordSignature(PySignature signature);
void showConsole(PyThreadInfo thread);
+
+ void loadReferrers(PyReferringObjectsValue var, PyDebugCallback<XValueChildrenList> callback);
}