Hi, I'm just beginning with eiffel and I was wondering how do you put the equivalent of a "break" command from a loop in eiffel. Cheers....
doogleman
doogleman@...
Apr 8, 2002 11:50 am
373
hello eiffelist! here is my first attempt of my bootstrap process, with win/gcc/ve 4.0 and yesterdays cvs. any idea ? (obviously , --define="GOBO_OS=unix"...
I have several shift/reduce conflicts in a grammar. The geyacc documentation (doc/geyacc/algorithm.html) states that, "Geyacc is designed to resolve these...
Hi Eric, ... I'm not entirely sure if the problem was programmatic or human interpretation. Perhaps I just don't fully understand the semantics of the result...
I've been working on a BON parser (ebon.sf.net). The BON grammar specification for geyacc has about 300 rules and the resulting FSM ~650 states. Needless to...
... Personally I would prefer --html since long option names are preceded by --. ... I played a little bit with it, and it definitely looks like an added-value...
... This is actually the same format as in GNU Bison. I didn't reinvent the wheel. ... OK. I'll try to do my best, despite the fact that I wrote this code 5...
I am since a long time a programmer I find this product very interesting. I can execute interpreted code directly on my PC microprocessor ...
arthur90277
arthur90277@...
May 16, 2002 6:02 pm
381
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the gobo-eiffel group. File : / Looking...
gobo-eiffel@yahoogrou...
May 20, 2002 3:18 pm
382
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the gobo-eiffel group. File : / Click...
gobo-eiffel@yahoogrou...
Jun 7, 2002 1:50 pm
383
Hello Eric, Perhaps you can enlighten me a bit what would be the difference between these two lex rules regarding run-time speed and memory efficiency: The...
... The first version should definitely be faster, but might produce a bigger executable (because the scanner is bigger, even though it will run at the same...
I am running elj-win32 SE -0.74 on WinNT The following code: class TEST_LINKED_LIST creation make feature make is local a_list: DS_BILINKED_LIST[STRING] ...
Neal, Thank you for your bug report. I managed to reproduce the bug and it is now fixed in the CVS version of Gobo at SourceForge. I don't know which version...
Hello, I use the CVS-Version of GOBO. For XML I use the event-parser. In the class in wich I handle the events, I need also the information at wich position in...
... While you are in an event callback, your_parser.position should be reverse assignable to XM_STREAM_POSITION which has the info you want. -- ...
Franck Arnaud
franck@...
Jul 6, 2002 3:21 am
390
Hello, because of EiffelFox, my application need to pass a c compiler option "-DSMALL_EIFFEL" to SmallEiffel. I can't find any gexace option which can generate...
... This has already been discussed in gobo-eiffel-develop mailing list, and no satisfactory solution has been found yet. The problem with 'c_compiler_options'...
Hello All, I took a somewhat longer look at geant today, and I'm at a complete loss how it is supposed to work. I've an intimate knowledge of Makefiles, so my...
... Although there is not a userguide yet there are plenty of examples in $GOBO/example/geant ... I am no makefile expert so I not quite sure what template...
... Thanks Sven, I'll study the examples. I'm also studying if a Relax NG validator could be useful. I need something and if my performance tests are ok, it...
When I include YY_FULL_SCANNER_SKELETON in my .l file, I get the following error, which does not occur if I use YY_COMPRESSED_SCANNER_SKELETON. Unfortunately,...
... You cannot just include YY_FULL_SCANNER_SKELETON like that. You have to run 'gelex' again with the -f command-line option or %option full. If you do so,...
lex experts, My first foray into gelex... The following gelex input file can match the default rule (and the resulting scanner jams), but I do not understand...
... It certainly put me on the right track although there were plenty of other bugs in my code. Thank you for the help and for Gelex. I have little formal...
... Tools like gelex and geyacc can make a real difference for your life. It takes some time indeed, but if you're really comfortable with them, you can just...