aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/analysis/SyntaxChecker.h
Commit message (Collapse)AuthorAgeFilesLines
* Introduce namespace `langutil` in liblangutil directory.Christian Parpart2018-11-221-2/+7
| | | | | | | Also: - Use {}-style list initialisation for SourceLocation construction - Introduce new system includes - Changes the API of the Scanner to take source as value (with move) as opposed to as a reference
* Removing redundant virtual from override function declarationmordax2018-11-211-21/+21
| | | | | | Remove trailing whitespace Remove changelog change
* Review suggestionsLeonardo Alt2018-09-041-4/+4
|
* Disallow single statement var decl in if/while/for without blocksLeonardo Alt2018-09-041-0/+6
|
* Add stricter hex underscore rulesBalajiganapathi S2018-08-081-0/+1
|
* Suggests external for fallback and interface functions.chriseth2018-07-181-0/+2
|
* Generates a syntax error when declaring a variable declaration's LHS has no ↵Christian Parpart2018-07-121-0/+2
| | | | named components
* semantics: Suggest auto-deduced type when user declares variable with `var` ↵Christian Parpart2018-07-111-2/+0
| | | | keyword.
* Disallow empty structsAlex Beregszaszi2018-03-271-0/+2
|
* Deprecate the var keyword (and mark it an error as experimental 0.5.0 feature)Jimmy Vogel2018-02-131-0/+2
|
* 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