-
public final class CallFrameJavaScript call frame. Array of call frames form the call stack.
-
-
Field Summary
Fields Modifier and Type Field Description private final StringcallFrameIdprivate final StringfunctionNameprivate final LocationfunctionLocationprivate final Locationlocationprivate final Stringurlprivate final List<Scope>scopeChainprivate final RemoteObjectthisprivate final RemoteObjectreturnValue
-
Constructor Summary
Constructors Constructor Description CallFrame(String callFrameId, String functionName, Location functionLocation, Location location, String url, List<Scope> scopeChain, RemoteObject this, RemoteObject returnValue)
-
Method Summary
Modifier and Type Method Description final Stringcomponent1()final Stringcomponent2()final Locationcomponent3()final Locationcomponent4()final Stringcomponent5()final List<Scope>component6()final RemoteObjectcomponent7()final RemoteObjectcomponent8()final CallFramecopy(String callFrameId, String functionName, Location functionLocation, Location location, String url, List<Scope> scopeChain, RemoteObject this, RemoteObject returnValue)final StringgetCallFrameId()Call frame identifier. final StringgetFunctionName()Name of the JavaScript function called on this call frame. final LocationgetFunctionLocation()Location in the source code. final LocationgetLocation()Location in the source code. final StringgetUrl()JavaScript script name or url. final List<Scope>getScopeChain()Scope chain for this call frame. final RemoteObjectgetThis()thisobject for this call frame.final RemoteObjectgetReturnValue()The value being returned, if the function is at return point. -
-
Constructor Detail
-
CallFrame
CallFrame(String callFrameId, String functionName, Location functionLocation, Location location, String url, List<Scope> scopeChain, RemoteObject this, RemoteObject returnValue)
-
-
Method Detail
-
component1
final String component1()
-
component2
final String component2()
-
component3
final Location component3()
-
component4
final Location component4()
-
component5
final String component5()
-
component6
final List<Scope> component6()
-
component7
final RemoteObject component7()
-
component8
final RemoteObject component8()
-
copy
final CallFrame copy(String callFrameId, String functionName, Location functionLocation, Location location, String url, List<Scope> scopeChain, RemoteObject this, RemoteObject returnValue)
-
getCallFrameId
final String getCallFrameId()
Call frame identifier. This identifier is only valid while the virtual machine is paused.
-
getFunctionName
final String getFunctionName()
Name of the JavaScript function called on this call frame.
-
getFunctionLocation
final Location getFunctionLocation()
Location in the source code.
-
getLocation
final Location getLocation()
Location in the source code.
-
getScopeChain
final List<Scope> getScopeChain()
Scope chain for this call frame.
-
getThis
final RemoteObject getThis()
thisobject for this call frame.
-
getReturnValue
final RemoteObject getReturnValue()
The value being returned, if the function is at return point.
-
-
-
-