fix(es/transforms): Fix threshold

This commit is contained in:
Donny/강동윤 2022-06-11 16:46:53 +09:00
parent 0f094da77f
commit a70c737506

View File

@ -29,10 +29,10 @@ pub fn expand(attr: TokenStream, mut item: ItemImpl) -> ItemImpl {
mode,
"module_items",
explode,
1,
100,
)));
item.items.push(ImplItem::Method(make_par_visit_method(
mode, "stmts", explode, 1,
mode, "stmts", explode, 100,
)));
item