mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 05:01:42 +03:00
eb2a2a7f15
- Temporarilly ignored comment codegen tests. - Split Simplify into SimplifyExpr and SimplifyStmt - fix lints
11 lines
296 B
JavaScript
11 lines
296 B
JavaScript
var a = !b && (!// should not touch this one
|
|
(!c || // should not touch this one
|
|
(!c || d) && (!// should not touch this one
|
|
(!c || d) &&
|
|
(!e || // should not touch this one
|
|
(!c || d) &&
|
|
(!e || f) && // should not touch this one
|
|
(!c || d) &&
|
|
(!e || f) &&
|
|
g();
|