oxc/crates/oxc_codegen/src
underfin 989ab88bc6
fix(codegen): print Directive original string (#2157)
> A Use Strict Directive may not contain an EscapeSequence or
LineContinuation.

It is `Use Strict Directive` spec, but the `expression` of `Directive`
isn't original string value, it has error if using it to codegen, so
here using `directive` of `Directive` to codegen and not to escape it.
Here is crashed test cases.

``` js
'use str\
ict';
```
The babel will print the original string, I follow it and avoid using
`print_str` because it will escape string.

I also changed some code using the `expression` of `Directive` to check
`Use Strict Directive` .
2024-01-25 15:24:05 +08:00
..
context.rs refactor(formatter,linter,codegen): remove oxc_formatter (#1968) 2024-01-10 06:41:20 +00:00
gen.rs fix(codegen): print Directive original string (#2157) 2024-01-25 15:24:05 +08:00
lib.rs refactor(formatter,linter,codegen): remove oxc_formatter (#1968) 2024-01-10 06:41:20 +00:00
operator.rs feat(codegen): move minifying printer to codegen crate (#985) 2023-10-12 14:56:30 +08:00