| bossa.modules.CompilationListener
CompilationListener | public interface CompilationListener (Code) | | |
bug | void bug(String stackTrace, String url)(Code) | | A bug occured in the compiler.
Parameters: url - the adress where a bug report should be submitted. |
progress | void progress(String packageName, String phase)(Code) | | Reports the progress of compilation.
phase can be: parsing, type-checking, generating code, ...
the package can be null if the phase applies to the whole program
(testing dispatch, creating the archive, compiling to native code, ...).
|
progress | void progress(float proportion)(Code) | | Gives an approximation of how much of the compilation has been completed.
Parameters: proportion - the current progress (0.0 = just started, 1.0 = complete). |
|
|