| 291 | } |
| 292 | |
| 293 | int Window_Interpreter::GetSelectedStackFrameLine() const { |
| 294 | if (GetIndex() < lines_without_stack) { |
| 295 | return -1; |
| 296 | } |
| 297 | return state.stack.size() - (GetIndex() - lines_without_stack) - 1; |
| 298 | } |
| 299 | |
| 300 | bool Window_Interpreter::UiSubActionLine::IsVisible() const { |
| 301 | for (auto v : this->visibility_delegates) { |
no test coverage detected