Results 60 comments of Eric Bezault

About assertions, as I mentioned before, `gec` tries to generate optimized code, so it does not generate assertions at all, even when specified in the Xace file. Assertions will be...

In your `SAMPLE` class, it should be: ``` eiffel Result := create {DS_HASH_SET [NATURAL]}.make () ``` and not: ``` eiffel Result := create {DS_SET}.make() ``` Also, your skeleton class says...

If this can be useful for you, here is how I work: - I use ISE EiffelStudio IDE to work on my project. It allows be to use its debugger,...

I pulled the modification made in .gitattributes about source code "E" not recognized as Eiffel. I'm waiting for the enum class to be improved before considering pulling it to the...

I'm the one to blame for not keeping the TODO list uptodate. I'm not familiar with github labels. What are they and how can they be used?

So, if I understand correctly, you suggest to use Issues for everything, and attached labels to them as a way to sort them by categories. Why not.

1) Use `pathname` instead of `nested_pathname`. 2) Use `file_system.relative_parent_director` instead of ".." 3) line 360: add a space before the parenthesis. 4) I understand that using folders whose name starts...

The reason why I had put the script generation in `ET_C_GENERATOR` is two-fold: 1) In order to generate the scripts we need to know what has been generated by `ET_C_GENERATOR`....

Shouldn't `ET_CMAKE_GENERATOR` inherit from `ET_SCRIPT_GENERATOR`?

I'm not familiar with CMake. Is it something that needs to be installed beforehand on the machine? The reason why I wrote the scripts in .bat and .sh is that...