Skip to content

Commit f5c427a

Browse files
authored
Merge pull request #525 from dev-five-git/responsive-typo
Responsive typo
2 parents 3cfffbe + ac9c7cc commit f5c427a

File tree

3 files changed

+744
-20
lines changed

3 files changed

+744
-20
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"changes": { "bindings/devup-ui-wasm/package.json": "Patch" },
3+
"note": "Support responsive",
4+
"date": "2025-12-26T13:51:45.007993200Z"
5+
}

libs/extractor/src/utils.rs

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -197,16 +197,7 @@ pub(super) fn wrap_direct_call<'a>(
197197
expr: &Expression<'a>,
198198
args: &[Expression<'a>],
199199
) -> Expression<'a> {
200-
builder.expression_call::<Option<oxc_allocator::Box<'_, oxc_ast::ast::TSTypeParameterInstantiation<'_>>>>(
201-
SPAN,
202-
expr.clone_in(builder.allocator),
203-
None,
204-
oxc_allocator::Vec::from_iter_in(
205-
args.iter().map(|e| e.clone_in(builder.allocator).into()),
206-
builder.allocator,
207-
),
208-
false,
209-
)
200+
builder.expression_call::<Option<oxc_allocator::Box<'_, oxc_ast::ast::TSTypeParameterInstantiation<'_>>>>(SPAN, expr.clone_in(builder.allocator), None, oxc_allocator::Vec::from_iter_in(args.iter().map(|e| e.clone_in(builder.allocator).into()), builder.allocator), false)
210201
}
211202
/// merge expressions to object expression
212203
pub(super) fn merge_object_expressions<'a>(

0 commit comments

Comments
 (0)