Closed GoogleCodeExporter closed 8 years ago
There is likely a bug at work here. The following *should* produce a symbol
named
"pack.build.install", member of "pack". Instead it produces
"pack.pack.build.install".
/** @namespace */
pack = {}
pack.build = function(task) {};
/** @memberOf pack */
pack.build.install = function() {}
Original comment by micmath
on 8 Mar 2008 at 10:56
Dotted names, used with @memberOf, like in your example of "build.install"
marked as
a member of "pack" is now supported in revision 528. This will be in the next
official release.
Using names with hash or dash are not supported yet, but if it is required
please
file as a separate issue, as I think it has different requirements than dotted
names.
Original comment by micmath
on 9 Mar 2008 at 1:52
Original issue reported on code.google.com by
xngzhao...@gmail.com
on 7 Mar 2008 at 6:29