MCPcopy Create free account
hub / github.com/endbasic/endbasic / drop

Method drop

core/src/compiler/syms.rs:326–330  ·  view source on GitHub ↗
(&mut self)

Source from the content-addressed store, hash-verified

324
325 impl Drop for TempReservationGuard {
326 fn drop(&mut self) {
327 let active_temps = self.active_temps.get();
328 debug_assert!(active_temps > 0);
329 self.active_temps.set(active_temps - 1);
330 }
331 }
332
333 let nlocals = u8::try_from(self.locals.len())

Callers

nothing calls this directly

Calls 2

setMethod · 0.80
getMethod · 0.45

Tested by

no test coverage detected