Looks like important comments need to be at the document level to be preserved:
```
Something.init(
/*!This is an important comment */
);
/*!This is an important comment too! */
function Dennis() {
/*!So is this */
}
```
Gets minified to:
```
function Dennis(){}Something.init();
/*!This is an important comment too! */
```
Comments: ** Comment from web user: ronlo **
```
Something.init(
/*!This is an important comment */
);
/*!This is an important comment too! */
function Dennis() {
/*!So is this */
}
```
Gets minified to:
```
function Dennis(){}Something.init();
/*!This is an important comment too! */
```
Comments: ** Comment from web user: ronlo **
Correct. At this time only statement-level important comments are preserved.