mirror of
https://github.com/danbulant/oxc
synced 2026-05-21 05:08:45 +00:00
Closes #5736. Introduce a `NONE` type which can be used for any `AstBuilder` method call param which expects an `IntoIn<'a, Something<'a>>`, where otherwise you have to provide a verbose type annotation. Before: ```rs ast.arrow_function_expression( SPAN, is_expression, is_async, None::<TSTypeParameterDeclaration>, params, None::<TSTypeAnnotation>, body, ) ``` After: ```rs ast.arrow_function_expression(SPAN, is_expression, is_async, NONE, params, NONE, body) ``` |
||
|---|---|---|
| .. | ||
| examples | ||
| src | ||
| Cargo.toml | ||
| CHANGELOG.md | ||