Created
September 2, 2012 10:09
-
-
Save ahomu/3596422 to your computer and use it in GitHub Desktop.
.coffee documentation comment sample for YUIDoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
###* | |
# hogehoge test description | |
# @class Hoge | |
### | |
class Hoge | |
###* | |
# fuga is number | |
# @property {Number} fuga | |
### | |
@fuga | |
###* | |
# piyo is string | |
# @property {String} piyo | |
### | |
@piyo | |
###* | |
# test description | |
# @constructor | |
# @param {Number} a | |
# @param {String} | |
### | |
@constructor:(a, b)-> | |
@fuga = a | |
@piyo = b | |
###* | |
# return concat props | |
# @method munimuni | |
# @return {String} | |
### | |
@muni: -> | |
@fuga + @piyo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment