mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 03:31:45 +03:00
eb2a2a7f15
- Temporarilly ignored comment codegen tests. - Split Simplify into SimplifyExpr and SimplifyStmt - fix lints
13 lines
251 B
JavaScript
13 lines
251 B
JavaScript
void function() {
|
|
var // reported from issue #60
|
|
void function () {
|
|
var a ;
|
|
// this foo should be dropped
|
|
a = function() {
|
|
return 1;
|
|
};
|
|
}.// this should be transformed to non-assignment expression
|
|
return 1;
|
|
};
|
|
}.b(this);
|