Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

gobo-eiffel · Gobo Eiffel

The Yahoo! Groups Product Blog

Check it out!

Group Information

? 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.

Messages

Advanced
Messages Help
Messages 170 - 199 of 1821   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
170 Patrick Doyle
doylep@... Send Email
Feb 6, 2001
5:29 pm
This group has been silent for some time now. I think that's a testament to the fact that Gobo just works. :-) Anyway, I was wondering about %type...
171 Eric Bezault
ericb@... Send Email
Feb 6, 2001
8:02 pm
... Well, I guess so ;-) ... This syntax is actually inherited from yacc and GNU bison for the language C. ... You mean something like that: Item <ITEM>:...
172 Berend de Boer
berend@... Send Email
Feb 6, 2001
9:54 pm
... And you can question if that is worth the trouble. Certain types you use only once, that's true, but many you use twice or more. So you have scattered your...
173 franck@... Send Email Feb 9, 2001
1:03 pm
... In that kind of request I wondered about the possibility to have wildcard for token declarations. Eg if your token types are all the same type, but that's...
174 franck@... Send Email Feb 9, 2001
1:39 pm
While I'm at it, I have another question or suggestion for geyacc: Is it possible to suspend the parser until further notice? That is I'd like to be able to...
175 Eric Bezault
ericb@... Send Email
Feb 9, 2001
1:44 pm
... Contrary to %type, the %token is not only used for type specification, but also for the declaration of the tokens. One needs to list the name of a token in...
176 franck@... Send Email Feb 9, 2001
3:51 pm
... Yes, that's convincing. Do character tokens (eg '.') have to be declared? It's really where I have most of my duplication, but on the other hand I'm really...
177 Eric Bezault
ericb@... Send Email
Feb 9, 2001
5:44 pm
... I think that there has been similar discussions, but I don't remember whether it was in this mailing-list or in private mail. I think it was when Andreas...
178 Eric Bezault
ericb@... Send Email
Feb 9, 2001
5:44 pm
... No, because there is no ambiguity with production names and single characters are already predeclared. You just need to explicitly declare same to specify...
179 Berend de Boer
berend@... Send Email
Feb 17, 2001
2:25 pm
Hello Eric, Is it possible to have a portable exit routine in Gobo? I.e. it should call die_with_code in SE, and XXXX in the other implementations. Groetjes, ...
180 Eric Bezault
ericb@... Send Email
Feb 17, 2001
8:06 pm
... It's already there, and it's portable. In my Gobo tools I use: inherit KL_SHARED_EXCEPTIONS feature f is do ... Exceptions.die (...) end but you can call...
181 Berend de Boer
berend@... Send Email
Feb 19, 2001
4:55 pm
... Aha, something learned. Thanks! Groetjes, Berend. (-:...
182 Paul Mancheno
paulmh@... Send Email
Feb 20, 2001
2:55 pm
Hi... I have EiffelBench4.4 but i want use files rc of VisualC; but I dont know how do that??.... can somebody help me please?? I'm sorry for this question,...
183 Eric Bezault
ericb@... Send Email
Feb 25, 2001
11:26 am
Some of you complained that 'gobo16.zip' had been generated under Windows and therefore had '\r&#92;n' instead of just '\n&#39; at the end of lines when uncompressed...
184 Eric Bezault
ericb@... Send Email
Feb 25, 2001
11:36 am
... I have modified gelex so that it can now find out whether there will be at least one 'when' branch or not when generating this 'inspect&#39; instruction. It...
185 Berend de Boer
berend@... Send Email
Mar 6, 2001
11:02 am
Hello Eric, I want to say a big thank you for the structure docs! When I looked at it 2 years ago, there wasn't much, so I decided not to bother. The last...
186 Eric Bezault
ericb@... Send Email
Mar 6, 2001
11:49 am
... Thank you. ... It should be fixed now. -- Eric Bezault mailto:ericb@... http://www.gobosoft.com...
187 francis.drai@... Send Email Mar 22, 2001
4:37 pm
Hello, will Gelex/geyacc be ported in eiffel# environment?...
188 Eric Bezault
ericb@... Send Email
Mar 22, 2001
4:50 pm
... This is not in my TODO list. It's already hard enough to support 4 compilers of the same language, it would be yet much harder to support another language...
189 nozone@... Send Email Mar 23, 2001
12:13 am
Hi, is there an easy way to print out the sequence of tokens emitted by gelex? I know there is a debug switch that gices me some information, but to be honest...
190 Eric Bezault
ericb@... Send Email
Mar 23, 2001
11:30 am
... Actually the 'debug ("GELEX")' in gelex is empty. If you use geyacc in combination with gelex, you can use 'debug ("GEYACC")' which should give you some...
191 Andreas Leitner
nozone@... Send Email
Mar 23, 2001
11:56 am
... That's a good idea. A perfect solution would be of course to somehow get the string of the tokens (TOK_MYTOKEN) as defined in the parser. Therefore one...
192 Eric Bezault
ericb@... Send Email
Mar 23, 2001
11:04 pm
... I modified my version of geyacc so that it now generates the following routine in the class containing the token codes (example extracted from...
193 Andreas Leitner
nozone@... Send Email
Mar 24, 2001
9:24 am
... Awesome Eric. To be honest I have no idea whether a new option makes sense either. On the one hand always generating the new code makes the anz geyak...
194 nozone@... Send Email Apr 11, 2001
11:36 pm
Hi, is there any known way on how to do some common file operations like 1) check if a file exists 2) check if a dir exists 3) delete a file 4) delete a dir in...
195 Eric Bezault
ericb@... Send Email
Apr 12, 2001
9:16 am
... I just had a quick look at the various Eiffel libraries ... ISE IO_MEDIUM.exists HACT IO_MEDIUM.exists SE FILE_TOOLS.is_readable VE...
196 Alexander Kogtenkov
kwaxer@... Send Email
Apr 13, 2001
7:57 am
... The cluster Pool in VE distribution will include the following classes class FILE_SYSTEM_ENTRY creation make feature {NONE} -- Creation make (entry_name:...
197 Eric Bezault
ericb@... Send Email
Apr 13, 2001
9:15 am
... OK, thank you. I just found it in VE 3.3 beta. I even noticed that you were using gepp to generate Win32 and Linux versions of these classes ;-) So here is...
198 Andreas Leitner
albackup@... Send Email
Apr 22, 2001
6:06 am
Hi list, Hi Eric, rember when I brought up the issue about nicely debugging gelex applications. You said you are going to implement the corresponding strings ...
199 Andreas Leitner
albackup@... Send Email
Apr 22, 2001
7:45 am
Hi list, Hi Eric, rember when I brought up the issue about nicely debugging gelex applications. You said you are going to implement the corresponding strings ...
Messages 170 - 199 of 1821   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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