thirdparty/jsdoctoolkit/app/test/exports.js
changeset 3041 c8f47f0b6697
equal deleted inserted replaced
3040:8f9580309846 3041:c8f47f0b6697
       
     1 /** @namespace */
       
     2 var mxn = {};
       
     3 
       
     4 (function(){ 
       
     5     /** @exports Map as mxn.Map */
       
     6     var Map =
       
     7         /** @constructor */
       
     8         mxn.Map = function() {
       
     9         };
       
    10     
       
    11     /** A method. */
       
    12     Map.prototype.doThings = function() {
       
    13     };
       
    14 })();