PageRenderTime 16ms CodeModel.GetById 12ms RepoModel.GetById 0ms app.codeStats 0ms

/tags/jsdoc_toolkit-1.4.0/test/data/function_property.js

http://jsdoc-toolkit.googlecode.com/
JavaScript | 21 lines | 14 code | 1 blank | 6 comment | 0 complexity | b259fa1ba13bf9ec4a8384c02ba0edfc MD5 | raw file
  1. var WH = {
  2. FLAG: {
  3. /**
  4. * Is it a W3C standards-compliant browser?
  5. */
  6. w3c: function() {
  7. return /** @scope WH.FLAG.w3c */ {
  8. level1: true,
  9. level2: true,
  10. getLevel: function () {
  11. }
  12. }
  13. }(),
  14. /**
  15. * Get the version number.
  16. */
  17. getVersion: function() {
  18. }
  19. }
  20. }