MCPcopy Create free account
hub / github.com/IppClub/Dora-SSR / call_stack_pop_str

Function call_stack_pop_str

Source/Wasm/WasmRuntime.cpp:1627–1629  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1625 return std::get<double>(v);
1626}
1627DORA_EXPORT int64_t call_stack_pop_str(int64_t stack) {
1628 return Str_Retain(std::get<std::string>(r_cast<CallStack*>(stack)->pop()));
1629}
1630DORA_EXPORT int32_t call_stack_pop_bool(int64_t stack) {
1631 return std::get<bool>(r_cast<CallStack*>(stack)->pop()) ? 1 : 0;
1632}

Callers 1

pop_strMethod · 0.85

Calls 2

Str_RetainFunction · 0.85
popMethod · 0.65

Tested by

no test coverage detected