Are there any implementation of Dependency Injection in Eiffel? Thz Javier ... 1GB gratis, Antivirus y Antispam Correo Yahoo!, el mejor correo web del mundo ...
8490
Rosivaldo Fernandes A...
rosivaldoalves@...
Feb 1, 2006 3:18 pm
8491
Riivo
riivok
Feb 1, 2006 3:22 pm
Tere, When trying to implement a little example of "expression problem" [1] in Eiffel I found that [my system with typing problem] compiles with EiffelStudio...
8492
Heilig, Brian - ACD
heiligb
Feb 1, 2006 4:51 pm
8493
Emmanuel Stapf [ES]
manus_eiffel
Feb 1, 2006 4:56 pm
... The issue is that the Eiffel compiler is not yet doing system validity, thus it does not recheck inherited code to ensure it is valid. This was not an...
8494
Emmanuel Stapf [ES]
manus_eiffel
Feb 1, 2006 4:58 pm
... Under your installed documentation of Eiffel 5.6 there is an entry which describes how to install the Microsoft Visual C++ toolkit 2003. ...
8495
Emmanuel Stapf [ES]
manus_eiffel
Feb 1, 2006 5:00 pm
... At the moment, this is not possible. Objects created by an Eiffel DLL cannot be reused by another Eiffel application. The reasons are technical. Our DLL ...
8496
Heilig, Brian - ACD
heiligb
Feb 1, 2006 5:03 pm
8497
Jack Perry
devotus
Feb 1, 2006 6:17 pm
Hi, I'm getting the following curious error in compilation. The compiler wizard gives no additional information for this error. Can anyone help me figure out...
8498
Rui Silvestre
ruisilvestre
Feb 1, 2006 6:17 pm
Hi all, I appreciate every help anyone can give. I really want to find a solution for this problem. I'm building an application where I can assemble & connect...
8499
Jack Perry
devotus
Feb 1, 2006 6:23 pm
The following information may or may not be relevant. The class signatures are: deferred class A class B [F->A create make] class C Feature make is deferred in...
8500
Ognian Pishev
pishev
Feb 1, 2006 10:42 pm
You ca probably use one of the new Express editions (Visual Web, C#). Their compilers should work for Eiffel. O. Pishev ... From: Heilig, Brian - ACD To:...
8501
Peter Gummer
peter_gummer
Feb 1, 2006 10:51 pm
... Yes, that's the most likely cause. I've encountered this a few times. The error message would be fixed by declaring make as a creation routine of A. But,...
8502
Peter Gummer
peter_gummer
Feb 1, 2006 10:55 pm
... Yes, I'm using Visual C++ 2005 Express Edition. The free 2003 compiler didn't work for me due to missing nmake or something, as Brian mentioned, but 2005...
8503
Emmanuel Stapf [ES]
manus_eiffel
Feb 2, 2006 2:01 am
... At the moment, the compiler will check that B [A] is valid and to do so checks that A has a creation procedure `make'. Since it is deferred it does not...
8504
Emmanuel Stapf [ES]
manus_eiffel
Feb 2, 2006 2:07 am
... At the moment, it is not possible the way you want to do it. Eiffel systems are mostly static. You get a little bit of dynamicity in the .NET world. Eiffel...
8505
Emmanuel Stapf [ES]
manus_eiffel
Feb 2, 2006 2:10 am
... This is indeed a bug of the flat form in EiffelStudio and we should fix this one day. Do you mind sending a problem report? ... Indeed, you just want to...
8506
Peter Gummer
peter_gummer
Feb 2, 2006 2:12 am
... That's great news! The current behaviour cuts out a lot possible uses of generic creation. Will this change still catch errors at compile time? - Peter...
8507
Rui Silvestre
ruisilvestre
Feb 2, 2006 3:20 am
Hi manu, ... So simple but this advice is very helpful to me, thank you very much. I will share my code between systems and take advantage of the Melting Ice ...
8508
philb328
Feb 2, 2006 10:18 am
== Apologies if you receive duplicate copies of this CFP == The Final CFP for the 1st International Symposium on Concurrency, Real-Time and Distribution in...
8509
cooped02
Feb 2, 2006 1:21 pm
Dear all, I'm playing with Eiffel 5.6.1218 Free Edition in an attempt to gain some familiarity with the language. The small problem I've decided to tackle is...
8510
CRISMER Paul-Georges
paul-georges.crismer@...
Feb 2, 2006 1:56 pm
The problem is with the following line :
> data.put((input_file.last_string).twin,
item_num) the `twin' feature just creates a clone of...
8511
Eric Bezault
gobosoft
Feb 2, 2006 2:28 pm
... Various sort algorithms are provided in the Gobo library. -- Eric Bezault mailto:ericb@... http://www.gobosoft.com...
8512
Emmanuel Stapf [ES]
manus_eiffel
Feb 2, 2006 4:52 pm
... I don't see what kind of errors you are referring to as the relaxation was done because it was bringing more freedom, and not more errors. Regards, Manu...
8513
Peter Gummer
peter_gummer
Feb 2, 2006 9:39 pm
... Hi Manu, What I mean is that there is still the possibility that the class of the actual generic parameter: (a) is not effective; or, (b) does not have...
8514
Joseph Kiniry
kiniry
Feb 2, 2006 9:54 pm
Hi Berend, ... There is quite a bit of rigorous testing that goes on, but there is a huge about of formal verification, specification writing, etc. as well. ...
8515
Emmanuel Stapf [ES]
manus_eiffel
Feb 2, 2006 10:12 pm
... Not possible, because at compile time the compiler will check that at creation time the actual generic parameter is effective and that it has the required ...
8516
Peter Gummer
peter_gummer
Feb 2, 2006 10:55 pm
... Excellent. That's exactly what I was wondering, and exactly what I was hoping it would do. Eiffel keeps getting better and better. Coming to EiffelStudio...
8517
cooped02
Feb 3, 2006 12:40 am
Thanks for the advice, your post explained what the problem was but didn't quite solve it, as make_from_string also allocated space equivalent to that of ...