From: Alexis Laferrière Date: Wed, 26 Aug 2015 19:08:09 +0000 (-0400) Subject: contrib/objcwrapper: comment out properties depending on types availability X-Git-Tag: v0.7.8~61^2~8 X-Git-Url: http://nitlanguage.org contrib/objcwrapper: comment out properties depending on types availability Signed-off-by: Alexis Laferrière --- diff --git a/contrib/objcwrapper/src/objc_generator.nit b/contrib/objcwrapper/src/objc_generator.nit index 9dd29f0..f28a49e 100644 --- a/contrib/objcwrapper/src/objc_generator.nit +++ b/contrib/objcwrapper/src/objc_generator.nit @@ -133,6 +133,7 @@ extern class {{{classe.name}}} in "ObjC" `{ {{{classe.name}}} * `} # Methods for method in classe.methods do + if not model.knows_all_types(method) then method.is_commented = true if not opt_init_as_methods.value and method.is_init then continue @@ -162,6 +163,8 @@ end for method in classe.methods do if not method.is_init then continue + if not model.knows_all_types(method) then method.is_commented = true + write_method_signature(method, file) write_objc_init_call(classe.name, method, file) @@ -170,6 +173,8 @@ end private fun write_attribute(attribute: ObjcAttribute, file: Writer) do + if not model.knows_type(attribute.return_type) then attribute.is_commented = true + write_attribute_getter(attribute, file) # TODO write_attribute_setter if there is no `readonly` annotation end