Rerun cargo fmt

This commit is contained in:
losfair
2019-11-11 02:00:16 +08:00
parent 03a9d1ad60
commit 03c5614203

View File

@ -2012,7 +2012,12 @@ impl FunctionCodeGenerator<CodegenError> for X64FunctionCode {
.as_mut() .as_mut()
.unwrap() .unwrap()
.insert(a.get_offset(), callback); .insert(a.get_offset(), callback);
Self::mark_trappable(a, &self.machine, &mut self.fsm, &mut self.control_stack); Self::mark_trappable(
a,
&self.machine,
&mut self.fsm,
&mut self.control_stack,
);
a.emit_inline_breakpoint(InlineBreakpointType::Middleware); a.emit_inline_breakpoint(InlineBreakpointType::Middleware);
} }
InternalEvent::FunctionBegin(_) | InternalEvent::FunctionEnd => {} InternalEvent::FunctionBegin(_) | InternalEvent::FunctionEnd => {}