-
I am working on a bigger project, and for readability reasons, I very much prefer Objective-C's syntax. To increase that for my project, I thought about creating a middleware to translate incoming fil…
-
I just played around a little, and found out, that this is not possible:
``` objective-c
@implementation MyImpl
+(id)myFunc {
console.log("Meep!");
}
@end
var MyExp = { func = [MyImpl myFunc] };…
-
Currently, we have a "--without-classes" option in ojc to strip various classes out. This is used to generate a smaller .js file for Tenuto from the musictheory.net sources (parsing/running the entir…
iccir updated
10 years ago
-
In oj 0.x, we had `--use-const` and `--use-enum` compiler options which overrode the reserved ECMAScript keywords `enum` and `const`. ECMAScript 6 defines `const` to be a constant version of `let`, h…
iccir updated
10 years ago
-
Both `+initialize` and `+load` are good examples of "Why are we trying to imitate Objective-C exactly?"
There is a lot of confusion around these two methods (see [bbum's excellent article](http://w…
iccir updated
10 years ago
-
I'm trying to get waitpid 0.1.0 working on node 0.10.0 running on OS X 10.8.3.
It appears to build correctly; however, upon require()'ing it in node, I get a "Symbol waitpid_module" not found error:
…
iccir updated
11 years ago
-
Investigate reusing animations rather than adding/remove via the CSSOM on start/end.
Add `vivi.define` to define an animation. Add `name` option to `vivi.start` to use an existing animation by name…
iccir updated
11 years ago
-
self=[self init];
should be:
self=[super init];