Search the web
Sign In
New User? Sign Up
iolanguage · Io
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 9582 - 9612 of 10708   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
9582
... 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,...
Quentin Mathé
qmathe
Offline Send Email
Nov 1, 2006
9:56 am
9583
... slightly ... I've added optionallyDependsOnLib("Addresses") and optionallyDependsOnFramework("AddressBook") in the build.io such that ObjcBridge links...
Baptiste Heyman
baptisteheyman
Offline Send Email
Nov 1, 2006
2:36 pm
9584
... 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...
Quentin Mathé
qmathe
Offline Send Email
Nov 2, 2006
6:08 pm
9585
... 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...
Steve Dekorte
stevedekorte
Offline Send Email
Nov 4, 2006
4:38 am
9586
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$...
Jonathan 'Wolf' Rentz...
wolfrentzsch
Offline Send Email
Nov 4, 2006
8:16 am
9587
... Hi Jonathan, You may need to install libevent (the make output should have mentioned it). libevent can be found in macports. - Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Nov 4, 2006
8:19 am
9588
... 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...
Brian L.
zoranderc
Offline Send Email
Nov 4, 2006
3:03 pm
9589
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...
Brian L.
zoranderc
Offline Send Email
Nov 4, 2006
3:22 pm
9590
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...
Brian L.
zoranderc
Offline Send Email
Nov 4, 2006
3:38 pm
9591
... It's not that easy. ... -- Jeremy Tregunna jtregunna@......
Jeremy Tregunna
jtregunna_io
Offline Send Email
Nov 4, 2006
4:53 pm
9592
... The spec is incomplete. ... ':' is marked special. ... "-123" is always seen as Operator, Number; never Operator, ... You're not really missing anything,...
Jeremy Tregunna
jtregunna_io
Offline Send Email
Nov 4, 2006
4:54 pm
9593
... get --partial solves this, provided the repo you're fetching from has been check-pointed sometime in the last millennium. ... Just because something is...
Jeremy Tregunna
jtregunna_io
Offline Send Email
Nov 4, 2006
6:06 pm
9594
Hi Jonathan- you need to install libevent, then rebuild Io. -- "Jupiter accepts your offer..." AIM:IMFDUP...
Nathan Seven
scosol
Offline Send Email
Nov 4, 2006
8:47 pm
9595
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...
Quag
quagath
Offline Send Email
Nov 4, 2006
9:32 pm
9596
... 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...
Steve Dekorte
stevedekorte
Offline Send Email
Nov 5, 2006
6:22 am
9597
... 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...
Michael Reid
prombot2000
Offline Send Email
Nov 5, 2006
10:31 pm
9598
... We can add a class method by adding an instance method into the metaclass, so i've added a metaclass method. You can now write NSObject...
Baptiste Heyman
baptisteheyman
Offline Send Email
Nov 5, 2006
10:34 pm
9599
... 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...
Jeremy Tregunna
jtregunna_io
Offline Send Email
Nov 5, 2006
10:47 pm
9600
... Why not use "resend" instead of "super(methodNameSameAsCurrent)"? -- Jeremy Tregunna jtregunna@......
Jeremy Tregunna
jtregunna_io
Offline Send Email
Nov 5, 2006
10:50 pm
9601
... 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...
Baptiste Heyman
baptisteheyman
Offline Send Email
Nov 6, 2006
12:09 am
9602
... 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...
Brian L.
zoranderc
Offline Send Email
Nov 6, 2006
9:39 pm
9603
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...
Brian L.
zoranderc
Offline Send Email
Nov 6, 2006
11:53 pm
9604
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...
ljnrf
Offline Send Email
Nov 11, 2006
5:36 am
9605
Hi, I'm currently stumbling on the following issue: myValue := NSString stringWithString: "~/" myValue := myValue stringByStandardizingPath The last line...
Quentin Mathé
qmathe
Offline Send Email
Nov 11, 2006
11:57 am
9607
... The direct workaround is to disable autoconversion in IoObjcBridge_ioValueForCValue_ofType_error_ by commenting out else if ([object...
Baptiste Heyman
baptisteheyman
Offline Send Email
Nov 11, 2006
9:43 pm
9608
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...
Brian L.
zoranderc
Offline Send Email
Nov 17, 2006
4:51 am
9609
... 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,...
Erik Garrison
geebusmcfeebus
Offline Send Email
Nov 17, 2006
6:17 am
9610
... 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...
Baptiste Heyman
baptisteheyman
Offline Send Email
Nov 17, 2006
10:18 am
9611
... 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...
Steve Dekorte
stevedekorte
Offline Send Email
Nov 17, 2006
12:17 pm
9612
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...
Mildred
mildred59300
Offline Send Email
Nov 17, 2006
9:52 pm
Messages 9582 - 9612 of 10708   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help