Get the top most element on the stack.
()
| 186 | |
| 187 | /** Get the top most element on the stack. */ |
| 188 | peek(): MenuStackItem | undefined { |
| 189 | return this._elements[this._elements.length - 1]; |
| 190 | } |
| 191 | |
| 192 | /** Whether the menu stack is associated with an inline menu. */ |
| 193 | hasInlineMenu() { |
no outgoing calls
no test coverage detected