Search the web
Sign In
New User? Sign Up
gobo-eiffel · Gobo Eiffel
? 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 769 - 799 of 1713   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
769
Hello Eric, In the documentation about sorting there is a hint that certain containers keep their elements sorted (priority queues or binary search trees)....
Berend de Boer
berenddeboer
Offline Send Email
May 1, 2003
9:31 am
770
... No. The containers currently in Gobo can be sorted according to an external comparison criterion. So a container can be sorted according to a criterion,...
ericb@...
gobosoft
Offline Send Email
May 1, 2003
3:56 pm
771
Trying a fresh checkout; W2K and Studio 5.3: Environment (after running bootstrap.bat): GOBO=c:\dev\gobo GOBO_OS=windows ISE_C_COMPILER=msc ...
neallester
Offline Send Email
May 6, 2003
4:25 pm
772
... I don't know why the Eiffel compiler is looking in eifinit\bench. Did you have an older version of ISE Eiffel installed on your PC before you installed...
ericb@...
gobosoft
Offline Send Email
May 6, 2003
6:20 pm
773
... I would say so. ... class AA create make feature make is local s: STRING do s := "[\t\s gobo \s\thello\s\t \t\s]" f (s) end f (s: STRING) is local i, nb:...
ericb@...
gobosoft
Offline Send Email
May 6, 2003
9:32 pm
774
I am trying to track down a problem that occurs at garbage collection time. The problem does not occur when system.xace specifies: <option name="assertion"...
Colin Paul Adams
colin@...
Send Email
May 8, 2003
5:30 pm
775
... It should look like this: <cluster name="kernel_classic" location="classic" relative="true" unless="${GOBO_DOTNET}"> <option name="assertion"...
Berend de Boer
berenddeboer
Offline Send Email
May 8, 2003
6:41 pm
776
It should look like this: <cluster name="kernel_classic" location="classic" relative="true" unless="${GOBO_DOTNET}"> <option name="assertion" value="none"/> ...
Colin Paul Adams
colin@...
Send Email
May 8, 2003
7:52 pm
777
Well, I'm specifying this: <cluster name="tests" location="${EDOM}/tests" > <option name="assertion" value="none"/> <option name="assertion" value="require"/> ...
Colin Paul Adams
colin@...
Send Email
May 8, 2003
8:05 pm
778
<option name="export" value="true"/> I have been using ok rather than true. -- Colin Paul Adams Preston Lancashire...
Colin Paul Adams
colin@...
Send Email
May 8, 2003
10:49 pm
779
... Nope, to work around a problem in ISE Eiffel here :-) -- Live long and prosper, Berend de Boer...
Berend de Boer
berenddeboer
Offline Send Email
May 9, 2003
11:08 am
780
... Berend> Nope, to work around a problem in ISE Eiffel here :-) Can you detail this problem for me please? -- Colin Paul Adams Preston Lancashire...
Colin Paul Adams
colin@...
Send Email
May 13, 2003
6:36 am
781
While using the Gobo Eiffel Tools Library from gobo31, I found an incompleteness in the flattening algorithm: Local variables which have a type 'like foo' are...
chnuschti17
Offline Send Email
May 13, 2003
7:31 am
782
Hello Eric, I was wondering what exactly happened in DS_HASH_TABLE if I had a STRING that returned the same code, but had a different STRING. Would they hash...
Berend de Boer
berenddeboer
Offline Send Email
May 13, 2003
7:35 am
783
... It compares the key indeed, but using `key_equality_tester' (or use '=' if the equality tester is Void). -- Eric Bezault mailto:ericb@... ...
ericb@...
gobosoft
Offline Send Email
May 13, 2003
4:27 pm
784
Hi Markus, ... Yes, I'm aware of that. Only the signature is resolved. So 'like foo' is not only left unresolved in local variable declarations, but also in...
ericb@...
gobosoft
Offline Send Email
May 13, 2003
5:08 pm
785
Hello, In case you were wondering what I've been doing during the past few months: www.gobolinux.org Of course everything is implemented using Gobo Eiffel! ;-)...
ericb@...
gobosoft
Offline Send Email
May 13, 2003
5:42 pm
786
... I think without the none it was ignored. Probably fixed in 5.2 -- Live long and prosper, Berend de Boer...
Berend de Boer
berenddeboer
Offline Send Email
May 14, 2003
7:16 am
787
... 5.3 sorry, typed to fast! -- Live long and prosper, Berend de Boer...
Berend de Boer
berenddeboer
Offline Send Email
May 14, 2003
7:17 am
789
I appologize if this got posted twice. I'm looking for a scanner and parser for eiffel files. I have modified the "eiffel_scanner.l" and "eiffel_parser.y"...
Jimmy Johnson
boxer41a
Offline Send Email
May 19, 2003
3:57 pm
790
I'm looking for a scanner and parser for eiffel files. I have modified the "eiffel_scanner.l" and "eiffel_parser.y" files in the examples included with...
Johnson, Jimmy
boxer41a
Offline Send Email
May 19, 2003
6:28 pm
791
... You can have a look at the classes in $GOBO/library/tools/eiffel. If you check out the CVS version, you will find an example using these classes in...
Eric Bezault
gobosoft
Offline Send Email
May 20, 2003
2:56 am
792
Eric, This looks great. Thanks for pointing out that I had it here all along. Thanks....
Johnson, Jimmy
boxer41a
Offline Send Email
May 20, 2003
3:06 pm
793
Eric, It appears my outgoing e_mail to this list is slow, so using yahoo I want to reply with a very big "thank you". I am trying to precompile (because I...
Jimmy Johnson
boxer41a
Offline Send Email
May 20, 2003
5:46 pm
794
... Go to $GOBO/test/precomp and run: gexace --library=ise --output=Ace.ace precomp.xace You can then use this Ace.ace file to precompile the classes of Gobo. ...
ericb@...
gobosoft
Offline Send Email
May 20, 2003
8:57 pm
795
The visitor pattern in class ET_AST_PROCESSOR of Gobo Eiffel Tools allows clients to implement new algorithms on an AST without having to touch the existing...
Markus Keller
chnuschti17
Offline Send Email
May 22, 2003
1:27 pm
796
This has been a great help. I am starting to get into it. It seems that the lace parser recognizes the "all" keyword in ISE because the feature...
Johnson, Jimmy
boxer41a
Offline Send Email
May 22, 2003
1:37 pm
797
... ET_CLUSTER, is ... `subclusters' are those explicitly defined in the Ace file or Xace file. Recursive clusters don't set `subclusters' because it depends...
ericb@...
gobosoft
Offline Send Email
May 22, 2003
4:51 pm
798
... file. ... when ... traversing ... Should the clusters/subclusters then be available from the universe? I can't seem to get there. Maybe if I tell you what...
Jimmy Johnson
boxer41a
Offline Send Email
May 22, 2003
10:27 pm
799
... Parsed classes are not stored in clusters, they are stored in the universe in ET_UNIVERSE.classes. But each classes knows about its cluster using...
ericb@...
gobosoft
Offline Send Email
May 23, 2003
12:45 am
Messages 769 - 799 of 1713   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