Eric Bezault
Eric Bezault
``` if not query.implementation_class.name.same_class_name (a_class.name) then ```
You can also write: ``` if query.implementation_class /= a_class then ``` which is probably better because it is possible to have two classes with the same name from different libraries.
> And how about compare: > > a `ET_CLASS` and a `parent.type` is the same class? ``` if l_parent.type.base_class = l_class then ```
I cannot reproduce this issue. During what Degree does `gec` crash?
OK, so the proper way to reproduce the bug is to run: ``` gec --gc=no --capability=concurrency=none system.ecf ```` in `$GOBO/tool/gedoc/src` and then run: ``` gedoc --format=field_rename docking_simple.ecf ``` in `$ISE_EIFFEL/examples/docking/simple`....
> Oh? I will fix my code. > > But there are 2 things I see: > > 1. why didn't it report size violation message to the programmer? (program...
I did not read the paper yet. It's on my TODO list for the coming weeks. I'm sorry I did not look at this issue before. I was not able...
I did a quick search, but was not able to find it. I'll come back to you on this after I read the paper and looked deeper in the ECMA...
OK, my memory was wrong. I found some old notes from ECMA standardization meetings (see below). In the draft of standard before its first edition, the `select` clause had been...
I'm not sure I understand how this class can be useful. How is it modelling an enumerated type? How does it enforce that the enumerated type is only made up...