(level: number)
| 737 | } |
| 738 | |
| 739 | export function nextContextImpl<T = any>(level: number): T { |
| 740 | const contextLView = (instructionState.lFrame.contextLView = walkUpViews( |
| 741 | level, |
| 742 | instructionState.lFrame.contextLView!, |
| 743 | )); |
| 744 | return contextLView[CONTEXT] as unknown as T; |
| 745 | } |
| 746 | |
| 747 | /** |
| 748 | * Gets the currently selected element index. |
no test coverage detected
searching dependent graphs…