参考链接

http://itmyhome.com/js/fu_za_lei_xing_zhu_shi.html

函数注释

comment func

  1. // funcName
  2. // 函数描述

文件注释

comment file

  1. //@file Describe the file

Struct注释

comment struct

  1. //structName
  2. //描述

事件注释

comment event

  1. //eventName
  2. //值变更时触发

常量注释

comment const

  1. //常量说明

复杂注释

comment complexity

  1. /**
  2. * 服务器
  3. *
  4. * @typedef namespaceA~Server {Object}
  5. * @property host {string}主机
  6. * @property port {int} 端口
  7. */