FireDBG Support Library
fire::dbg!
This macro allows you to capture the value of a variable via runtime inspection in FireDBG.
Usage example:
use fire;
Which fire::dbg!(v) would expand to __firedbg_trace__("v", v) when compiled under debug mode.
The label could be customized, which fire::dbg!("arg_v", v) would expand to __firedbg_trace__("arg_v", v).
In release mode, it would expand to an expression passing through the value, i.e. { v }.
Note that the function passes through the ownership of the variable, just like the std::dbg! macro.