| 132 | inline RuntimeScriptValue *GetHead() { return _head; } |
| 133 | inline const RuntimeScriptValue *GetHead() const { return _head; } |
| 134 | inline size_t GetSize() const { return _entries.data() + _entries.size() - _head; } |
| 135 | |
| 136 | inline void Push(const RuntimeScriptValue &value) |
| 137 | { |
no test coverage detected