MCPcopy Index your code
hub / github.com/explodingcamera/tinywasm / base

Method base

crates/tinywasm/src/interpreter/stack/value_stack.rs:198–204  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

196
197 #[inline(always)]
198 pub(crate) fn base(&self) -> StackBase {
199 StackBase {
200 s32: self.stack_32.len() as u32,
201 s64: self.stack_64.len() as u32,
202 s128: self.stack_128.len() as u32,
203 }
204 }
205
206 #[inline(always)]
207 pub(crate) fn len(&self) -> usize {

Callers 1

call_untypedMethod · 0.80

Calls 1

lenMethod · 0.45

Tested by

no test coverage detected