PageRenderTime 21ms CodeModel.GetById 11ms RepoModel.GetById 1ms app.codeStats 0ms

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

http://jsdoc-toolkit.googlecode.com/
JavaScript | 16 lines | 11 code | 1 blank | 4 comment | 0 complexity | 88fdd69b27ea5ad3d3f134513e2f3887 MD5 | raw file
  1. // combined nested object literals and functions
  2. /** A document. */
  3. var Site = {
  4. protocol: {
  5. Connection: function() {
  6. this.setTimeout = function(time){
  7. }
  8. }
  9. },
  10. /** @constructor */
  11. Mirror: function(page, depth) {
  12. /** The log report. */
  13. this.log = new Log();
  14. }
  15. }