Difference between revisions of "Tools"
Jump to navigation
Jump to search
Hzwakenberg (talk | contribs) m |
(→Debugging: section renamed as Testing; adding mock) |
||
Line 25: | Line 25: | ||
* [[short]]: generates the interface documentation of a single class |
* [[short]]: generates the interface documentation of a single class |
||
− | === |
+ | === Testing === |
* [[ace_check]]: checks an [[ACE|ACE file]] |
* [[ace_check]]: checks an [[ACE|ACE file]] |
||
* [[class_check]]: checks the [[parsing|syntax]] and the [[semantics]] of a source code |
* [[class_check]]: checks the [[parsing|syntax]] and the [[semantics]] of a source code |
||
* [[eiffeltest]]: the LibertyEiffel testing tool |
* [[eiffeltest]]: the LibertyEiffel testing tool |
||
+ | * [[mock]]: the LibertyEiffel mock tool |
||
=== Installing === |
=== Installing === |
Revision as of 20:43, 1 May 2016
LibertyEiffel provides many tools besides the compiler.
All these tools use the configuration file.
The tools
Tool box
- se: a facade to all those tools
Compiling
- clean: remove the useless C files
- compile: the compiler (calls compile_to_c)
- compile_to_c: the C compiler core
- extract_internals: the tentative inter-program object sharing tool
- wrappers_generator: a tools to generate low-level Eiffel wrappers for C code
Searching and documenting
- eiffeldoc: generates the whole documentation of a project
- finder: finds a class
- pretty: makes your source file pretty
- short: generates the interface documentation of a single class
Testing
- ace_check: checks an ACE file
- class_check: checks the syntax and the semantics of a source code
- eiffeltest: the LibertyEiffel testing tool
- mock: the LibertyEiffel mock tool
Installing
- install: installs the LibertyEiffel tools
The system core
If you are interested by how the system works, either by sheer curiosity, or because you want to modify it, here are some explanations.
If you want to create a new LibertyEiffel-oriented tool, this information is important too; also look at EXTERNAL_TOOL.
- class loading
- syntactic analysis
- semantic analysis
- the optimizer
- the visitors
- code generation