From: Alexandre Terrasa Date: Wed, 25 May 2016 02:56:27 +0000 (-0400) Subject: src/model: fix mdoc_or_fallback for MClasses and MProperties X-Git-Url: http://nitlanguage.org src/model: fix mdoc_or_fallback for MClasses and MProperties Signed-off-by: Alexandre Terrasa --- 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.