Package org.teavm.debugging.javascript
Interface JavaScriptCallFrame
-
public interface JavaScriptCallFrame
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JavaScriptValuegetClosureVariable()JavaScriptDebuggergetDebugger()JavaScriptLocationgetLocation()Promise<byte[]>getMemory(int address, int count)JavaScriptValuegetThisVariable()Promise<java.util.Map<java.lang.String,? extends JavaScriptVariable>>getVariables()
-
-
-
Method Detail
-
getDebugger
JavaScriptDebugger getDebugger()
-
getLocation
JavaScriptLocation getLocation()
-
getVariables
Promise<java.util.Map<java.lang.String,? extends JavaScriptVariable>> getVariables()
-
getThisVariable
JavaScriptValue getThisVariable()
-
getClosureVariable
JavaScriptValue getClosureVariable()
-
getMemory
Promise<byte[]> getMemory(int address, int count)
-
-