Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Review suggestions | Leonardo Alt | 2018-09-04 | 1 | -4/+4 |
| | |||||
* | Disallow single statement var decl in if/while/for without blocks | Leonardo Alt | 2018-09-04 | 1 | -0/+6 |
| | |||||
* | Add stricter hex underscore rules | Balajiganapathi S | 2018-08-08 | 1 | -0/+1 |
| | |||||
* | Suggests external for fallback and interface functions. | chriseth | 2018-07-18 | 1 | -0/+2 |
| | |||||
* | Generates a syntax error when declaring a variable declaration's LHS has no ↵ | Christian Parpart | 2018-07-12 | 1 | -0/+2 |
| | | | | named components | ||||
* | semantics: Suggest auto-deduced type when user declares variable with `var` ↵ | Christian Parpart | 2018-07-11 | 1 | -2/+0 |
| | | | | keyword. | ||||
* | Disallow empty structs | Alex Beregszaszi | 2018-03-27 | 1 | -0/+2 |
| | |||||
* | Deprecate the var keyword (and mark it an error as experimental 0.5.0 feature) | Jimmy Vogel | 2018-02-13 | 1 | -0/+2 |
| | |||||
* | Update outdated comments | Kwang Yul Seo | 2017-11-15 | 1 | -1/+1 |
| | | | | _errors -> _errorReporter. | ||||
* | Warn if no visibility is specified on contract functions. | Alex Beregszaszi | 2017-09-14 | 1 | -0/+1 |
| | |||||
* | Support experimental feature pragma | Alex Beregszaszi | 2017-08-10 | 1 | -0/+2 |
| | |||||
* | Deprecate throw. | chriseth | 2017-07-06 | 1 | -0/+3 |
| | |||||
* | Warn deprecated usage of parameter names in function types | Federico Bond | 2017-06-27 | 1 | -0/+2 |
| | |||||
* | Refactor error reporting | Rhett Aultman | 2017-05-30 | 1 | -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 Aultman | 2017-04-29 | 1 | -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. | chriseth | 2017-02-14 | 1 | -1/+1 |
| | |||||
* | Fix licensing headers | VoR0220 | 2016-11-23 | 1 | -4/+4 |
| | | | | Signed-off-by: VoR0220 <rj@erisindustries.com> | ||||
* | Version pragma. | chriseth | 2016-09-01 | 1 | -0/+7 |
| | |||||
* | Require modifiers to contain "_". | chriseth | 2016-08-16 | 1 | -0/+9 |
| | |||||
* | code changes according to Chris's comments | Lu Guanqun | 2016-01-19 | 1 | -3/+6 |
| | |||||
* | check whether break/continue is in the loop | Lu Guanqun | 2016-01-15 | 1 | -0/+58 |