(thread: Thread, callFrame: Cdp.Runtime.CallFrame)
| 150 | private _thread: Thread; |
| 151 | |
| 152 | static fromRuntime(thread: Thread, callFrame: Cdp.Runtime.CallFrame): StackFrame { |
| 153 | return new StackFrame(thread, callFrame.functionName, thread.rawLocation(callFrame)); |
| 154 | } |
| 155 | |
| 156 | static fromDebugger(thread: Thread, callFrame: Cdp.Debugger.CallFrame): StackFrame { |
| 157 | const result = new StackFrame(thread, callFrame.functionName, thread.rawLocation(callFrame)); |
nothing calls this directly
no test coverage detected