Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tools/jsdoc-toolkit/app/test/exports.js
blob: 63a87cb4d07fb1f1adaaa25a1d0b16ade33be9c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/** @namespace */
var mxn = {};

(function(){ 
    /** @exports Map as mxn.Map */
    var Map =
        /** @constructor */
        mxn.Map = function() {
        };
    
    /** A method. */
    Map.prototype.doThings = function() {
    };
})();