returns topmost element on the stack
| 672 | |
| 673 | // returns topmost element on the stack |
| 674 | Object object() const |
| 675 | { |
| 676 | fb_assert(stk); |
| 677 | return stk->getObject(stk->getCount() - 1); |
| 678 | } |
| 679 | |
| 680 | // returns true if stack is not empty |
| 681 | bool hasData() const |
no test coverage detected