Guest User

Untitled

a guest
Dec 18th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. ###*
  2. # hogehoge test description
  3. # @class Hoge
  4. ###
  5. class Hoge
  6. ###*
  7. # fuga is number
  8. # @property {Number} fuga
  9. ###
  10. @fuga
  11.  
  12. ###*
  13. # piyo is string
  14. # @property {String} piyo
  15. ###
  16. @piyo
  17.  
  18. ###*
  19. # test description
  20. # @constructor
  21. # @param {Number} a
  22. # @param {String}
  23. ###
  24. @constructor:(a, b)->
  25. @fuga = a
  26. @piyo = b
  27.  
  28. ###*
  29. # return concat props
  30. # @method munimuni
  31. # @return {String}
  32. ###
  33. @muni: ->
  34. @fuga + @piyo
Add Comment
Please, Sign In to add comment