aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/interface/ErrorReporter.h
Commit message (Collapse)AuthorAgeFilesLines
* Isolating files shared between Yul- and Solidity language frontend.Christian Parpart2018-11-221-126/+0
|
* Disallow packed encoding of literals.chriseth2018-07-031-0/+6
|
* Do not abort excessive warnings, just ignore them.Alex Beregszaszi2018-04-061-1/+8
|
* Limit the number of errors output in a single run to 256Alex Beregszaszi2018-04-061-0/+2
|
* Ensure parameter names match between headers and implementationAlex Beregszaszi2017-09-201-1/+1
|
* Add copy constructor to ErrorReporter (since it has assignment operator)Alex Beregszaszi2017-08-251-0/+3
|
* Mark appropriate constructors explicitAlex Beregszaszi2017-08-221-1/+1
|
* Use a secondary location for function override errorsFederico Bond2017-08-121-2/+2
|
* Show unimplemented function if trying to instantiate an abstract classAlex Beregszaszi2017-08-041-0/+6
|
* Warn about shadowing variables.Alex Beregszaszi2017-07-251-11/+11
|
* Remove Why3 error classAlex Beregszaszi2017-07-011-4/+0
|
* Refactor error reportingRhett Aultman2017-05-301-0/+106
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