Do not include oli.* symbols in the inheritance chain

This commit is contained in:
Andreas Hocevar
2014-05-15 01:52:04 +02:00
parent 81523091f0
commit e050c905e2

View File

@@ -65,8 +65,10 @@ function includeAugments(doclet) {
}
});
}
cls._hideConstructor = true;
delete cls.undocumented;
if (cls.longname.indexOf('oli.') !== 0) {
cls._hideConstructor = true;
delete cls.undocumented;
}
}
}
}