| 195 | static ConsoleValue gNothing; |
| 196 | |
| 197 | ConsoleValue* ConsoleValueStack::pop() |
| 198 | { |
| 199 | if (mStackPos == 0) { |
| 200 | AssertFatal(false, "Console Value Stack is empty"); |
| 201 | return &gNothing; |
| 202 | } |
| 203 | |
| 204 | return &mStack[--mStackPos]; |
| 205 | } |
| 206 | |
| 207 | void ConsoleValueStack::pushFrame() |
| 208 | { |
no outgoing calls
no test coverage detected