From 5726bb2cadc7e8a95638b1dc11c023fd072454f3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jean-Christophe=20Beaupr=C3=A9?= Date: Mon, 1 Dec 2014 14:18:53 -0500 Subject: [PATCH] doc: List the inner classes in the search bar. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jean-Christophe Beaupré --- src/doc/doc_pages.nit | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/doc/doc_pages.nit b/src/doc/doc_pages.nit index 4b81d86..1780167 100644 --- a/src/doc/doc_pages.nit +++ b/src/doc/doc_pages.nit @@ -1351,6 +1351,7 @@ class NitdocClass map["type"] = new HashSet[MProperty] map["init"] = new HashSet[MProperty] map["fun"] = new HashSet[MProperty] + map["inner"] = new HashSet[MProperty] for mprop in mprops do if mprop isa MVirtualTypeProp then map["type"].add mprop @@ -1360,6 +1361,8 @@ class NitdocClass else map["fun"].add mprop end + else if mprop isa MInnerClass then + map["inner"].add mprop end end return map -- 1.7.9.5