contrib/objcwrapper: intro `ObjcMethod::is_init`
[nit.git] / contrib / objcwrapper / src / objc_model.nit
index b2465c5..46589c9 100644 (file)
@@ -48,6 +48,9 @@ class ObjcMethod
 
        # Return type as a `String`
        var return_type: String is noinit, writable
+
+       # Does this method look like a constructor/method?
+       fun is_init: Bool do return params.first.name.has_prefix("init")
 end
 
 # Attribute of an `ObjcClass`