mirror of
https://github.com/a2x/cs2-dumper.git
synced 2025-04-05 03:35:34 +08:00
Add token escaping for Rust output r#use
This commit is contained in:
parent
3a935f5d73
commit
c75480be3e
@ -78,11 +78,12 @@ impl CodeGen for Vec<Button> {
|
|||||||
|
|
||||||
fmt.block("pub mod buttons", false, |fmt| {
|
fmt.block("pub mod buttons", false, |fmt| {
|
||||||
for button in self {
|
for button in self {
|
||||||
writeln!(
|
let mut name = button.name.clone();
|
||||||
fmt,
|
if name == "use" {
|
||||||
"pub const {}: usize = {:#X};",
|
name = format!("r#{}", name);
|
||||||
button.name, button.value
|
}
|
||||||
)?;
|
|
||||||
|
writeln!(fmt, "pub const {}: usize = {:#X};", name, button.value)?;
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
|
Loading…
x
Reference in New Issue
Block a user