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...
Berend de Boer
berend@...
Mar 6, 2001 11:02 am
186
... Thank you. ... It should be fixed now. -- Eric Bezault mailto:ericb@... http://www.gobosoft.com...
Eric Bezault
ericb@...
Mar 6, 2001 11:49 am
187
Hello, will Gelex/geyacc be ported in eiffel# environment?...
francis.drai@...
Mar 22, 2001 4:37 pm
188
... 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...
Eric Bezault
ericb@...
Mar 22, 2001 4:50 pm
189
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...
nozone@...
Mar 23, 2001 12:13 am
190
... 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...
Eric Bezault
ericb@...
Mar 23, 2001 11:30 am
191
... 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...
Andreas Leitner
nozone@...
Mar 23, 2001 11:56 am
192
... I modified my version of geyacc so that it now generates the following routine in the class containing the token codes (example extracted from...
Eric Bezault
ericb@...
Mar 23, 2001 11:04 pm
193
... 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...
Andreas Leitner
nozone@...
Mar 24, 2001 9:24 am
194
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...
nozone@...
Apr 11, 2001 11:36 pm
195
... 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...
Eric Bezault
ericb@...
Apr 12, 2001 9:16 am
196
... The cluster Pool in VE distribution will include the following classes class FILE_SYSTEM_ENTRY creation make feature {NONE} -- Creation make (entry_name:...
Alexander Kogtenkov
kwaxer@...
Apr 13, 2001 7:57 am
197
... 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...
Eric Bezault
ericb@...
Apr 13, 2001 9:15 am
198
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 ...
Andreas Leitner
albackup@...
Apr 22, 2001 6:06 am
199
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 ...
Andreas Leitner
albackup@...
Apr 22, 2001 7:45 am
200
Hi again, Unfortunatly I spend some time in Hospital. I am back home and fine again. Fortunatly I was able to borrow a laptop. In order to escape endless ...
Andreas Leitner
nozone@...
Apr 24, 2001 12:37 pm
201
I just released Gobo Eiffel 2.0. You can get it from: http://www.gobosoft.com/ You can see what's new since the previous release in: ...
Eric Bezault
ericb@...
May 1, 2001 5:18 pm
202
... Awesome. Cannot wait to try out the new stuff !!! Thanks Eric! Although I cannot for the moment - is it just me or is there s.th. wrong with the downloads?...
Andreas Leitner
nozone@...
May 1, 2001 10:08 pm
203
I have already written a mail several hours ago, but it didn't show up, so I guess it is lost... Awesome Eric, cannot wait to try out the 2.0 release. But I am...
nozone@...
May 2, 2001 12:52 am
204
... I just uploaded the .zip and .tar.gz files again. I hope that it will work this time. -- Eric Bezault mailto:ericb@... http://www.gobosoft.com...
Eric Bezault
ericb@...
May 2, 2001 1:25 am
205
... Yep this time it worked. I am on my way exploring the new stuff. There is a lot in there !! Great work. One question on the not yet completed eiffel-tools:...
Andreas Leitner
nozone@...
May 2, 2001 2:12 pm
206
... Why not! The main idea that I had when starting this library was to share a framework between tools analyzing Eiffel source code, such a my Gobo Eiffel...
Eric Bezault
ericb@...
May 2, 2001 5:20 pm
207
... That's great. Looking forward! For now I have played a little with the new build system you use. First off, it is great having a unified build system -...
Andreas Leitner
nozone@...
May 2, 2001 7:17 pm
208
... Hmm, I think you're getting over-enthousiastic. The system of Makefiles that I put together was just a small help for me to handle the development of Gobo....
Eric Bezault
ericb@...
May 3, 2001 12:03 am
209
... I see, that of course makes my other questions obsolete. Too bad. ... Agreed, runtime tests also solve the cross-compile problem. I guess I was just too...
Andreas Leitner
nozone@...
May 3, 2001 1:30 am
210
Hi again, is it true, that if you want to use the new build system you have to install cygwin on Windows? I cannot see how else those Makefiles (not talking...
nozone@...
May 8, 2001 9:12 pm
211
... Yes, you need GNU make and bash. -- Eric Bezault mailto:ericb@... http://www.gobosoft.com...
Eric Bezault
ericb@...
May 9, 2001 8:28 am
212
I'm pleased to announce that the CVS repository of Gobo is now accessible from SourceForge at: https://sourceforge.net/projects/gobo-eiffel/ Also, if you use...
Eric Bezault
ericb@...
May 11, 2001 2:35 pm
213
Some lex/yacc lookalikes have a flag that causes the generated parser to be re-entrant. For example, bison offers the "%pure_parser" declaration. A similar...
Roger Browne
egroups@...
May 11, 2001 8:41 pm
214
... As far as I understood it when I reversed-engineered flex and bison, they use global variables for the current state of the parsing. Therefore it is not...