mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 05:01:42 +03:00
708efebac9
- fix comment line's end to be on same line.
8 lines
143 B
JavaScript
8 lines
143 B
JavaScript
// reported from issue #60
|
|
void function() {
|
|
var a; // this foo should be dropped
|
|
a = function() {
|
|
return 1;
|
|
};
|
|
}.b(this);
|