Export to GitHub

jscocoa - issue #1

create structs with new


Posted on Oct 11, 2008 by Helpful Lion

ObjC : NSPoint point; point.x = 4; JSCocoa : var point = new NSPoint; point.x = 4;

Comment #1

Posted on Oct 11, 2008 by Helpful Lion

(No comment was entered for this change.)

Comment #2

Posted on Oct 14, 2008 by Helpful Lion

Fixed.

new NSPoint will return a structure containing x and y set to undefined. new NSPoint(3, 4) will return a filled structure new NSPoint(3), new NSPoint(3, 4, 5) will fail.

Comment #3

Posted on Oct 14, 2008 by Helpful Lion

(No comment was entered for this change.)

Status: Fixed

Labels:
Type-Enhancement Priority-Medium