1 2 3 4 5 6 7 8 9 10 11
use crate::records::compiler::Compiler; use crate::records::reg_scope::RegScope; impl Compiler { pub fn reg_scope_compiler(&mut self) -> RegScope { RegScope { self_: self as *mut Compiler, old_top: self.reg_top, } } }