Thanks for the information. BTW, I'm having fun using getest with SE and ISE, testing my EBON scanner right now. I wrote my old Makefile to do everything...
Hi everyone, I have finished the lexer for the EBON project. With the help of getest I now have over 400 unit test assertions running willy-nilly over the...
... The closest thing that I can think of that has been implemented with 'gelex' (at least in ISE's compiler) is the new verbatim strings introduced in ETL3....
Dear Eiffel developer, This is Rajesh Krishnan from Athreya Consulting Services. My firm is into executive search and recruitment targetted at Ebusiness and IT...
Rajesh Krishnan
rk_athreya@...
Jan 12, 2002 12:01 pm
341
... I'm having a problem with this feature, I'm using the latest released version of gobo (2.0). The problem I'm experiencing is that the routine "token_name"...
odanr0t
john.mapley@...
Feb 3, 2002 1:31 am
342
... Can you please run the following command: geyacc --version ISE Eiffel 5 comes with an old version of Gobo (1.5) and if this version (instead of the version...
... Thanks, that was it. It reported version 1.6 which I found is because of an old SmallEiffel distribution I have installed. With that disabled everything...
odanr0t
john.mapley@...
Feb 3, 2002 2:35 pm
344
Hello All, For VE the make routine is: !! Result.make_empty Isn't it better (faster) to have: !! Result.make (n) Result.wipe_out -- Groetjes, Berend. (-:...
... Exactly. BTW, the next release of VE will support STRING.make as specified in the NICE standard, so "make" and "make_empty" could be interchanged. Regards,...
Hello All, How can I create OS dependent sections in a cluster.xace file? For example certain directories are specific for Windows, others for Unix. -- ...
... You can use the "if" and/or "unless" attributes (which are available in pretty much all the Xace elements) combined with the GOBO_OS variable (which, if I...
... If we ever want to make gexace usuable by non-Eiffel programmers, having env names with GOBO in them (GOBO_OS/GOBO_EIFFEL) does not seem to be a good idea....
... Good question. Because what happens if you compile with cygwin on Windows? Is that Windows or Unix? Or if you compile with wine (is that possible??) on...
... It does more or less the same thing as in SmallEiffel: it looks at '/' or '\' in the current pathname. I know it's far from perfect, but it's better than...
I just checkout out the cvs version of gobo, and I'm having a devil of a time compiling GETEST. I still have GETEST 2.0, but it seems to produce source code...
... It is not clear to me what kind of problem you are having. Can you tell us what Eiffel compiler you are using and what error message you get. For your...
Running bootstrap on a clean checkout worked. I must have mucked something up before stumbling on work\bootstrap. Thanks, Neal ... devil ... seems to...
Hello gobo-users ! Can I do this ?: One class is writing data in a file, at the same time another class (the scanner) must be analyse this file. Must I use the...
... It probably depends on your OS how/if you can read a file that is being written by another process. I think it is going to be tricky, because eof will...
... In case when the producer and consumer are different processes, pipe will do. And it works on both *nix and Windows: VE provides the versions for both. I'm...
... eposix supports cross process pipes on POSIX and Windows. But Gobo currently supports only things that are available in all Eiffel compilers. -- Groetjes, ...
... Thinking in terms of my C experience, this is easy to accomplish as long as certain precautions are followed. Assuming you have a single file handle, the...
Hello All, SmallEiffel changed the C interface a bit with b19. I've patched the expat interface, I will commit it after I've VE working. And I still have big...