Obtain the value at the top of the stack.
| 103 | |
| 104 | // Obtain the value at the top of the stack. |
| 105 | static Value* top() |
| 106 | { |
| 107 | context* elem = top_; |
| 108 | return elem ? elem->value_ : 0; |
| 109 | } |
| 110 | |
| 111 | private: |
| 112 | // The top of the stack of calls for the current thread. |
no outgoing calls
no test coverage detected