(thread: Thread, name: string, rawLocation: RawLocation)
| 173 | } |
| 174 | |
| 175 | constructor(thread: Thread, name: string, rawLocation: RawLocation) { |
| 176 | this._id = ++StackFrame._lastFrameId; |
| 177 | this._name = name || '<anonymous>'; |
| 178 | this._rawLocation = rawLocation; |
| 179 | this._uiLocation = thread.rawLocationToUiLocation(rawLocation); |
| 180 | this._thread = thread; |
| 181 | } |
| 182 | |
| 183 | callFrameId(): string | undefined { |
| 184 | return this._scope ? this._scope.callFrameId : undefined; |
nothing calls this directly
no test coverage detected