Skip to content

Commit

Permalink
feat(ast): allow passing span to void_0 method
Browse files Browse the repository at this point in the history
  • Loading branch information
Dunqing committed Sep 26, 2024
1 parent 7764793 commit 9e754e9
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions crates/oxc_ast/src/ast_builder_impl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,10 +127,10 @@ impl<'a> AstBuilder<'a> {

/// `void 0`
#[inline]
pub fn void_0(self) -> Expression<'a> {
pub fn void_0(self, span: Span) -> Expression<'a> {
let num = self.number_0();
Expression::UnaryExpression(self.alloc(self.unary_expression(
Span::default(),
span,
UnaryOperator::Void,
num,
)))
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use oxc_ast::ast::*;
use oxc_span::SPAN;
use oxc_span::{GetSpan, SPAN};
use oxc_syntax::{
number::NumberBase,
operator::{BinaryOperator, UnaryOperator},
Expand Down Expand Up @@ -101,7 +101,7 @@ impl<'a> PeepholeSubstituteAlternateSyntax {
/// Transforms `undefined` => `void 0`
fn compress_undefined(&self, expr: &mut Expression<'a>, ctx: &mut TraverseCtx<'a>) -> bool {
if ctx.is_expression_undefined(expr) {
*expr = ctx.ast.void_0();
*expr = ctx.ast.void_0(expr.span());
return true;
};
false
Expand Down
3 changes: 2 additions & 1 deletion crates/oxc_minifier/src/ast_passes/remove_syntax.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
use oxc_allocator::Vec;
use oxc_ast::ast::*;
use oxc_span::GetSpan;
use oxc_traverse::{Traverse, TraverseCtx};

use crate::{CompressOptions, CompressorPass};
Expand Down Expand Up @@ -77,7 +78,7 @@ impl<'a> RemoveSyntax {

fn compress_console(&mut self, expr: &mut Expression<'a>, ctx: &mut TraverseCtx<'a>) {
if self.options.drop_console && Self::is_console(expr) {
*expr = ctx.ast.void_0();
*expr = ctx.ast.void_0(expr.span());
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ impl<'a> NullishCoalescingOperator<'a> {
SPAN,
Self::clone_expression(&reference, ctx),
op,
ctx.ast.void_0(),
ctx.ast.void_0(SPAN),
);
let test = ctx.ast.expression_logical(SPAN, left, LogicalOperator::And, right);

Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_transformer/src/react/jsx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -676,7 +676,7 @@ impl<'a> ReactJsx<'a> {
if key_prop.is_some() {
arguments.push(Argument::from(self.transform_jsx_attribute_value(key_prop, ctx)));
} else if is_development {
arguments.push(Argument::from(self.ctx.ast.void_0()));
arguments.push(Argument::from(self.ctx.ast.void_0(SPAN)));
}

// isStaticChildren
Expand Down

0 comments on commit 9e754e9

Please sign in to comment.