oxc/crates/oxc_codegen
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
..
examples feat(codegen): beauty class print (#995) 2023-10-15 16:37:01 +08:00
src fix(codegen): print Directive original string (#2157) 2024-01-25 15:24:05 +08:00
tests feat(codegen): move string test to codegen (#2150) 2024-01-23 23:49:36 +08:00
Cargo.toml Publish crates v0.5.0 2024-01-12 23:33:47 +08:00