/tags/jsdoc_toolkit-1.4.0/test/data/oblit_func.js
JavaScript | 16 lines | 11 code | 1 blank | 4 comment | 0 complexity | 88fdd69b27ea5ad3d3f134513e2f3887 MD5 | raw file
- // combined nested object literals and functions
- /** A document. */
- var Site = {
- protocol: {
- Connection: function() {
- this.setTimeout = function(time){
- }
- }
- },
- /** @constructor */
- Mirror: function(page, depth) {
- /** The log report. */
- this.log = new Log();
- }
- }