* Gets whether this stackframe is at the same position as the other frame.
(other: unknown)
| 448 | * Gets whether this stackframe is at the same position as the other frame. |
| 449 | */ |
| 450 | public equivalentTo(other: unknown) { |
| 451 | return ( |
| 452 | other instanceof StackFrame |
| 453 | && other._rawLocation.columnNumber === this._rawLocation.columnNumber |
| 454 | && other._rawLocation.lineNumber === this._rawLocation.lineNumber |
| 455 | && other._rawLocation.scriptId === this._rawLocation.scriptId |
| 456 | ); |
| 457 | } |
| 458 | |
| 459 | callFrameId(): string | undefined { |
| 460 | return this._scope ? this._scope.callFrameId : undefined; |
no outgoing calls
no test coverage detected