Re: proposal for better syntax for extern objective-C and compatibility with named argument parameters

2013-06-27 Thread Jacob Carlborg
On 2013-06-27 07:35, Timothee Cour wrote: See [1][2] for related thread introducing extern(objective C) A) The syntax proposed in [2] transforms: -(void) insertItemWithObjectValue: (NSString *) path atGreen:(NSInteger) anInt; [obj insertItemWithObjectValue:val atGreen:idx ]; into: void

Re: proposal for better syntax for extern objective-C and compatibility with named argument parameters

2013-06-27 Thread Paulo Pinto
On Thursday, 27 June 2013 at 05:35:28 UTC, Timothee Cour wrote: See [1][2] for related thread introducing extern(objective C) A) The syntax proposed in [2] transforms: -(void) insertItemWithObjectValue: (NSString *) path atGreen:(NSInteger) anInt; [obj insertItemWithObjectValue:val

Re: proposal for better syntax for extern objective-C and compatibility with named argument parameters

2013-06-27 Thread Michel Fortin
On 2013-06-27 05:35:11 +, Timothee Cour thelastmamm...@gmail.com said: See [1][2] for related thread introducing extern(objective C) A) The syntax proposed in [2] transforms: -(void) insertItemWithObjectValue: (NSString *) path atGreen:(NSInteger) anInt; [obj insertItemWithObjectValue:val

proposal for better syntax for extern objective-C and compatibility with named argument parameters

2013-06-26 Thread Timothee Cour
See [1][2] for related thread introducing extern(objective C) A) The syntax proposed in [2] transforms: -(void) insertItemWithObjectValue: (NSString *) path atGreen:(NSInteger) anInt; [obj insertItemWithObjectValue:val atGreen:idx ]; into: void insertItem(NSString* object, NSInteger anInt)