| 368 | } |
| 369 | |
| 370 | void Squirrel::CollectGarbage() |
| 371 | { |
| 372 | ScriptAllocatorScope alloc_scope(this); |
| 373 | sq_collectgarbage(this->vm); |
| 374 | } |
| 375 | |
| 376 | bool Squirrel::CallMethod(HSQOBJECT instance, std::string_view method_name, HSQOBJECT *ret, int suspend) |
| 377 | { |
no test coverage detected