我正在用 Google Apps Script 编写一些库,并且正在尝试记录它们。我已经按以下格式编写了一些类,并且类中方法的注释没有显示在文档中:
/**
* My comments here
*/
function MyBeautifulObject(){
this.myMethod=myMethod;
....
/**
* This comment doesn't show up
*/
function myMethod(){
...
}
}
关于如何实现这一目标的任何想法?