MCPcopy Create free account
hub / github.com/bytecodealliance/wasmtime / Path

Class Path

cranelift/bforest/src/path.rs:12–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10use core::fmt;
11
12pub(super) struct Path<F: Forest> {
13 /// Number of path entries including the root and leaf nodes.
14 size: usize,
15
16 /// Path of node references from the root to a leaf node.
17 node: [Node; MAX_PATH],
18
19 /// Entry number in each node.
20 entry: [u8; MAX_PATH],
21
22 unused: PhantomData<F>,
23}
24
25impl<F: Forest> Default for Path<F> {
26 fn default() -> Self {

Callers 3

parseMethod · 0.85
name_interfaceMethod · 0.85
generate_named_importMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected