| 69 | pointer += sizeof(Float); |
| 70 | } |
| 71 | inline void StackContext::pushString(const String &s) |
| 72 | { |
| 73 | *(String *)pointer = s; |
| 74 | pointer += sizeof(String); |
| 75 | } |
| 76 | |
| 77 | inline void StackContext::pushObject(Dynamic d) |
| 78 | { |
no outgoing calls
no test coverage detected