mirror of
https://github.com/danbulant/oxc
synced 2026-05-19 04:08:41 +00:00
fix(codegen): CallExpression sourcemap (#2717)
This commit is contained in:
parent
f8fe3af3cf
commit
9609c34e6d
2 changed files with 571 additions and 283 deletions
|
|
@ -1359,6 +1359,7 @@ impl<'a, const MINIFY: bool> GenExpr<MINIFY> for CallExpression<'a> {
|
|||
p.print(b'(');
|
||||
p.print_list(&self.arguments, ctx);
|
||||
p.print(b')');
|
||||
p.add_source_mapping(self.span.end);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue