MCPcopy Index your code
hub / github.com/Rust-API/Rust-API-Bypass-Checker / visit_circle

Method visit_circle

src/analysis/wto.rs:332–340  ·  view source on GitHub ↗
(&mut self, circle: &WtoCircle)

Source from the content-addressed store, hash-verified

330 }
331
332 fn visit_circle(&mut self, circle: &WtoCircle) {
333 let head = circle.head();
334 self.wto_nesting_map.insert(head, self.wto_nesting.clone());
335 self.wto_nesting.push(head);
336 for comp in circle {
337 self.visit_component(&comp);
338 }
339 self.wto_nesting.pop();
340 }
341}
342
343impl WtoNestingIterator {

Callers 1

visit_componentMethod · 0.45

Calls 5

headMethod · 0.80
pushMethod · 0.80
visit_componentMethod · 0.80
popMethod · 0.80
insertMethod · 0.45

Tested by

no test coverage detected