File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
crates/swc_ecma_utils/src Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ swc_core : patch
3
+ swc_ecma_utils : patch
4
+ ---
5
+
6
+ doc(es/parallel): Improve document of ` Parallel `
Original file line number Diff line number Diff line change @@ -22,9 +22,15 @@ pub trait Parallel: swc_common::sync::Send + swc_common::sync::Sync {
22
22
fn merge ( & mut self , other : Self ) ;
23
23
24
24
/// Invoked after visiting all [Stmt]s, possibly in parallel.
25
+ ///
26
+ ///
27
+ /// Note: `visit_*_par` never calls this.
25
28
fn after_stmts ( & mut self , _stmts : & mut Vec < Stmt > ) { }
26
29
27
30
/// Invoked after visiting all [ModuleItem]s, possibly in parallel.
31
+ ///
32
+ ///
33
+ /// Note: `visit_*_par` never calls this.
28
34
fn after_module_items ( & mut self , _stmts : & mut Vec < ModuleItem > ) { }
29
35
}
30
36
You can’t perform that action at this time.
0 commit comments