aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/mozart/src/commands/dump_autoload.rs
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-05-09 12:15:21 +0900
committernsfisis <nsfisis@gmail.com>2026-05-09 12:15:53 +0900
commitf18c18cd15f180b5067069ec6f10530515715f3d (patch)
tree85ea3d3f10da9b32359dc3797fc7e6d262ae6752 /crates/mozart/src/commands/dump_autoload.rs
parentf0192390ae1d89981f59395307e885a595f86eef (diff)
downloadphp-mozart-f18c18cd15f180b5067069ec6f10530515715f3d.tar.gz
php-mozart-f18c18cd15f180b5067069ec6f10530515715f3d.tar.zst
php-mozart-f18c18cd15f180b5067069ec6f10530515715f3d.zip
refactor(console): accept format args directly in console_writeln! macros
Eliminate the nested &console_format!(...) boilerplate at every call site by teaching console_writeln!, console_write!, console_writeln_error!, and console_write_error! to accept a format literal + variadic args directly, matching the println!/eprintln! ergonomics. Propagate the format string span into generated code so rustc errors point to the right location. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'crates/mozart/src/commands/dump_autoload.rs')
-rw-r--r--crates/mozart/src/commands/dump_autoload.rs37
1 files changed, 13 insertions, 24 deletions
diff --git a/crates/mozart/src/commands/dump_autoload.rs b/crates/mozart/src/commands/dump_autoload.rs
index 0d12220..f2db011 100644
--- a/crates/mozart/src/commands/dump_autoload.rs
+++ b/crates/mozart/src/commands/dump_autoload.rs
@@ -1,7 +1,7 @@
use clap::Args;
use mozart_autoload::AutoloadGeneratorExt;
use mozart_core::composer::{AutoloadDumpOptions, Composer, PlatformRequirementFilter};
-use mozart_core::{console_format, console_writeln};
+use mozart_core::console_writeln;
#[derive(Args, Default)]
pub struct DumpAutoloadArgs {
@@ -69,9 +69,7 @@ pub async fn execute(
missing = true;
console_writeln!(
console,
- &console_format!(
- r#"<warning>Not all dependencies are installed. Make sure to run a "composer install" to install missing dependencies</warning>"#
- ),
+ r#"<warning>Not all dependencies are installed. Make sure to run a "composer install" to install missing dependencies</warning>"#,
);
break;
}
@@ -99,16 +97,14 @@ pub async fn execute(
console_writeln!(
console,
- &console_format!(
- "<info>{}</info>",
- if class_map_authoritative {
- "Generating optimized autoload files (authoritative)"
- } else if optimize {
- "Generating optimized autoload files"
- } else {
- "Generating autoload files"
- }
- ),
+ "<info>{}</info>",
+ if class_map_authoritative {
+ "Generating optimized autoload files (authoritative)"
+ } else if optimize {
+ "Generating optimized autoload files"
+ } else {
+ "Generating autoload files"
+ }
);
let dev_mode = if args.dev {
@@ -148,22 +144,15 @@ pub async fn execute(
if class_map_authoritative {
console_writeln!(
console,
- &console_format!(
- "<info>Generated optimized autoload files (authoritative) containing {number_of_classes} classes</info>",
- ),
+ "<info>Generated optimized autoload files (authoritative) containing {number_of_classes} classes</info>",
);
} else if optimize {
console_writeln!(
console,
- &console_format!(
- "<info>Generated optimized autoload files containing {number_of_classes} classes</info>",
- ),
+ "<info>Generated optimized autoload files containing {number_of_classes} classes</info>",
);
} else {
- console_writeln!(
- console,
- &console_format!("<info>Generated autoload files</info>"),
- );
+ console_writeln!(console, "<info>Generated autoload files</info>");
}
if missing_dependencies || args.strict_psr && class_map.has_psr_violations() {