()
| 3 | export const frameStack: Array<FrameBase> = []; |
| 4 | |
| 5 | export function topmost(): FrameBase { |
| 6 | if (frameStack.length > 0) { |
| 7 | return frameStack[frameStack.length - 1]; |
| 8 | } |
| 9 | |
| 10 | return undefined; |
| 11 | } |
| 12 | |
| 13 | export function _isFrameStackEmpty(): boolean { |
| 14 | return frameStack.length === 0; |
no outgoing calls
no test coverage detected