From 34a05be2cb821fd35609fc70fc3911c9cad34587 Mon Sep 17 00:00:00 2001 From: Alexandre Terrasa Date: Tue, 24 May 2016 22:56:27 -0400 Subject: [PATCH] src/model: fix mdoc_or_fallback for MClasses and MProperties Signed-off-by: Alexandre Terrasa --- src/model/model.nit | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/model/model.nit b/src/model/model.nit index 9aefe19..3d9a364 100644 --- a/src/model/model.nit +++ b/src/model/model.nit @@ -555,6 +555,8 @@ class MClass # Is `self` and abstract class? var is_abstract: Bool is lazy do return kind == abstract_kind + + redef fun mdoc_or_fallback do return intro.mdoc_or_fallback end @@ -1963,6 +1965,8 @@ abstract class MProperty redef var location + redef fun mdoc_or_fallback do return intro.mdoc_or_fallback + # The canonical name of the property. # # It is currently the short-`name` prefixed by the short-name of the class and the full-name of the module. -- 1.7.9.5