| 1 | export interface StackFrame { |
| 2 | columnNumber?: number; |
| 3 | lineNumber?: number; |
| 4 | // start of the enclosing function (the definition, not the call site); |
| 5 | // only available from V8's structured CallSite API |
| 6 | enclosingLineNumber?: number; |
| 7 | enclosingColumnNumber?: number; |
| 8 | fileName?: string; |
| 9 | functionName?: string; |
| 10 | source?: string; |
| 11 | isServer?: boolean; |
| 12 | isSymbolicated?: boolean; |
| 13 | // the source map ignore-listed this frame's original source (x_google_ignoreList) |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…