Skip to content
Snippets Groups Projects
Commit a309e26d authored by rswindell's avatar rswindell
Browse files

Added support for documenting associative arrays (first element only).

parent 2624fcc9
Branches
Tags
No related merge requests found
......@@ -162,6 +162,11 @@ function document_object(name, obj, type)
{
object_header(name,obj,type);
if(obj._dont_document==undefined) {
if(obj._assoc_array!=undefined)
for(i in obj) {
obj=obj[i];
break;
}
f.writeln("<ul>");
document_methods(name,obj);
object_depth++;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment