aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/analysis/SyntaxChecker.h
Commit message (Collapse)AuthorAgeFilesLines
* Update outdated commentsKwang Yul Seo2017-11-151-1/+1
| | | | _errors -> _errorReporter.
* Warn if no visibility is specified on contract functions.Alex Beregszaszi2017-09-141-0/+1
|
* Support experimental feature pragmaAlex Beregszaszi2017-08-101-0/+2
|
* Deprecate throw.chriseth2017-07-061-0/+3
|
* Warn deprecated usage of parameter names in function typesFederico Bond2017-06-271-0/+2
|
* Refactor error reportingRhett Aultman2017-05-301-5/+2
| | | | | | | | | 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
* Deprecate use of unary '+'Rhett Aultman2017-04-291-0/+4
| | | | | | | The unary '+' serves no meaningful purpose in Solidity and it makes it possible to produce typos with dagerous implications (e.g. 'a =+5 '), so we are deprecating it. The SyntaxChecker currently issues warnings on the unary '+' but will still compile it for now.
* Refactor NameAndTypeResolver and SyntaxChecker to allow other entry points.chriseth2017-02-141-1/+1
|
* Fix licensing headersVoR02202016-11-231-4/+4
| | | | Signed-off-by: VoR0220 <rj@erisindustries.com>
* Version pragma.chriseth2016-09-011-0/+7
|
* Require modifiers to contain "_".chriseth2016-08-161-0/+9
|
* code changes according to Chris's commentsLu Guanqun2016-01-191-3/+6
|
* check whether break/continue is in the loopLu Guanqun2016-01-151-0/+58