| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
| |
This commit introduces ErrorReporter, a utility class which consolidates
all of the error logging functionality into a common set of functions.
It also replaces all direct interactions with an ErrorList with calls to
an ErrorReporter.
This commit resolves issue #2209
|
|
|
|
|
| |
The unused variable checker in StaticAnalyzer did not conssider
InlineAssembly objects. This commit introduces that missing feature.
|
| |
|
| |
|
|
|
|
|
|
|
| |
There are many cases of code where the return parameters exist mostly
as a form of documentation. This change ensures that they do not have
to be used in the function body so long as there is a return supplying
values
|
|
|
|
|
|
| |
Analyze functions for all local variables, parameters, and named
return variables which are never used in the function, and issue
a warning.
|
| |
|
| |
|
|
|