Files
cappuccino/Objective-J
Martin Carlberg ecc1e774b9 New: Added macro/identifier concatenation with the '##' operator
Example:
#define first Martin
#define second Carlberg
var first##second = 13;

Compiles to:
var MartinCarlberg = 13;

Example 2:
#define _function(inline) function inline { return _##inline; }
#define _CGPointMake(x_, y_) { x:x_, y:y_ }
_function(CGPointMake(x, y))

Compiles to:
function CGPointMake (x, y) {
  return {x: x, y: y};
}
2013-03-20 21:00:36 +01:00
..
2012-07-28 02:06:05 +01:00
2012-04-12 10:45:01 -04:00
2012-05-10 09:01:03 -04:00
2012-07-09 11:11:37 +01:00
2010-02-17 19:20:44 -08:00
2013-01-07 20:29:56 +01:00
2013-02-13 12:24:58 +00:00
2013-03-09 14:35:16 -05:00
2013-01-20 18:24:48 +00:00