File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 3535#### :nail_care : Polish
3636
3737- Formatter no longer writes files when contents are already correctly formatted. https://github.com/rescript-lang/rescript/pull/8209
38+ - Build system: Only log verbose "Generating AST for module" when actually parsing. https://github.com/rescript-lang/rescript/pull/8210
3839
3940#### :house : Internal
4041
Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ pub fn generate_asts(
2424 . modules
2525 . par_iter ( )
2626 . map ( |( module_name, module) | {
27- debug ! ( "Generating AST for module: {module_name}" ) ;
2827 let package = build_state
2928 . get_package ( & module. package_name )
3029 . expect ( "Package not found" ) ;
@@ -47,6 +46,7 @@ pub fn generate_asts(
4746 . map ( |i| i. parse_dirty )
4847 . unwrap_or ( false )
4948 {
49+ debug ! ( "Generating AST for module: {module_name}" ) ;
5050 inc ( ) ;
5151 let ast_result = generate_ast (
5252 package. to_owned ( ) ,
You can’t perform that action at this time.
0 commit comments