Constant rustfmt_nightly::overflow::SPECIAL_CASE_MACROS

source ·
const SPECIAL_CASE_MACROS: &[(&str, usize)];
Expand description

A list of format!-like macros, that take a long format string and a list of arguments to format.

Organized as a list of (&str, usize) tuples, giving the name of the macro and the number of arguments before the format string (none for format!("format", ...), one for assert!(result, "format", ...), two for assert_eq!(left, right, "format", ...)).