Property definitions

cocoa :: cocoa_message_box $ Sys :: dialog
private fun dialog in "ObjC" `{
	NSAlert *alert = [[[NSAlert alloc] init] autorelease];
	[alert setMessageText:@"Hello world!"];
	[alert runModal];
`}
lib/cocoa/examples/cocoa_message_box.nit:26,1--30,2