aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/analysis/SyntaxChecker.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Deprecate throw.chriseth2017-07-061-0/+10
|
* Warn deprecated usage of parameter names in function typesFederico Bond2017-06-271-0/+12
|
* Refactor error reportingRhett Aultman2017-05-301-32/+9
| | | | | | | | | 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
* Style and stricter tests.chriseth2017-05-021-3/+1
|
* Deprecate use of unary '+'Rhett Aultman2017-04-291-0/+19
| | | | | | | 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-2/+2
|
* Fix licensing headersVoR02202016-11-231-4/+4
| | | | Signed-off-by: VoR0220 <rj@erisindustries.com>
* Suggest correct version for pragma and complain about pre-release version.chriseth2016-10-251-4/+13
|
* Fix pragma keyword checkYoichi Hirai2016-10-111-1/+1
| | | | Fixes #1192
* Use version string (including prerelease) for pragma matching.chriseth2016-09-011-2/+3
|
* Version pragma.chriseth2016-09-011-3/+50
|
* Require modifiers to contain "_".chriseth2016-08-161-1/+20
|
* add another test case for continue not in loopLu Guanqun2016-01-191-4/+4
|
* code changes according to Chris's commentsLu Guanqun2016-01-191-16/+9
|
* check whether break/continue is in the loopLu Guanqun2016-01-151-0/+87