... I have been able to fix the problem, but I don't remember how :-) May be it was a problem of method declaration order. ... ok, thanks. ... Not in my case,...
... slightly ... I've added optionallyDependsOnLib("Addresses") and optionallyDependsOnFramework("AddressBook") in the build.io such that ObjcBridge links...
... Ok. I will let you know if I need it. ... ok ... I think you should keep instance method assignement in its current form. For class methods, the solution...
... There's no schedule, but the focus now is on stability and docs. ... If SOAP is just XML + http, then it should be easy to do whatever you need using the...
Something's not right with my Io installation. Installing from scratch on Mac OS X 10.4.8/Intel yields broken Socket functionality: wolf-mbp:~/Desktop wolf$...
... Quag's been talking about something like this for a while, but I don't think he's released anything. I considered making something like this after my...
As someone with absolutely no say in the matter, I would like to point out a few issues with Io's darcs usage, some past, some present. 1. Repository checkout...
I've been working on a parser for Io, and it seems like I either misunderstand the notational/diagramatic conventions in the grammar spec, or the lexical...
... The spec is incomplete. ... ':' is marked special. ... "-123" is always seen as Operator, Number; never Operator, ... You're not really missing anything,...
... get --partial solves this, provided the repo you're fetching from has been check-pointed sometime in the last millennium. ... Just because something is...
Hi Brain, ... Keep in mind that it no longer matters if operators are parsed as operators or identifiers. The op-shuffling phase of the parse ignores all that...
... for Objective-C. I'd like to remove that and let the objc stuff use a overrided [] method to implement objc style messaging. Quag, can you update the...
... Are you referring to .NET's APIs for dynamically generating code? This might be something worth looking at. My plans were to essentially define a binding...
... Slow, well... no slower than the overhead of an Io method invocation at the minimum. The problem is really when the C function calls you're making expect a...
... I used super because it is specially redefined in Io2Objc.m to use the Objective-C superclass, while resend still uses the Io proto. Super was just of more...
... Yes...Reflection.Emit works at the bytecode level and CodeDom works closer to the source..I believe it also allows, say, reading in C# code into a CodeDom...
Possibly more important that that is making public the details of how these builds were made (tools and modifications made) and what does/doesn't work (Maybe...
I have built Io a couple of different ways on Windows and as soon as I get the time I'll try to at least put together a recipe. Before I do that there is a...
Hi, I'm currently stumbling on the following issue: myValue := NSString stringWithString: "~/" myValue := myValue stringByStandardizingPath The last line...
Interesting: Io> "test" f := 3 ==> 3 Io> ("t" .. "est") f ==> 3 Io> ("t" asMutable appendSeq("est") asSymbol) f ==> 3 The first and the third don't surprise me...
... What's happening in the first example is kind of subtle. So, you're making an immutable sequence by "test" and executing f := 3 in its context. Remember,...
... To resume I have turned off NSString/NSNumber => IoString/IoNumber autoconversion (the reverse conversion is still on). To perform it you have to use the...
... I don't recall why appendSeq() on an immutable returns an immutable, but then I'm not sure why appending two immutables should return a mutable. What do...
Hi, I just discovered Io, and I found it great, it's just the language I've been waiting for. I just have little questions : Apparently, the end of line is...