Quick fix for the case where generated comment is the terminal leaf in a subtree that is followed by a trailing comment. Partial for #3034
17 lines
253 B
JavaScript
17 lines
253 B
JavaScript
import "foo";
|
|
import "foo-bar";
|
|
import "./directory/foo-bar";
|
|
import foo from "foo2";
|
|
import * as foo2 from "foo3";
|
|
import {bar} from "foo4";
|
|
import {foo as bar2} from "foo5";
|
|
|
|
export {test};
|
|
export var test = 5;
|
|
|
|
bar(foo);
|
|
|
|
/* my comment */
|
|
bar2;
|
|
foo;
|