the following code emits comments in wrong place:
/**
-
Some class comment...
/
export class MyClass {
/*
-
Some method comment...
*/
public static doSomething(){
}
}
output:
/**
This is a valid JavaScript code, but... should the "Some method comment..." be there?