diff options
author | Rhett Aultman <rhett.aultman@meraki.net> | 2017-09-20 23:52:10 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-09-30 00:50:25 +0800 |
commit | e434437eb71e03483232a55aac8c53928fe63d38 (patch) | |
tree | 637552965700a6a3d350f2a2626a7d46ab5c3762 /Changelog.md | |
parent | 466cce58dffc66054e9df223f49a9219e6f5f4cd (diff) | |
download | dexon-solidity-e434437eb71e03483232a55aac8c53928fe63d38.tar.gz dexon-solidity-e434437eb71e03483232a55aac8c53928fe63d38.tar.zst dexon-solidity-e434437eb71e03483232a55aac8c53928fe63d38.zip |
Unary + now a synax error (experimental 0.5.0)
The unary + was deprecated with a warning, but will be elevated to an
error in 0.5.0. This adds the syntax error for the 0.5.0 pragma, and
for a true 0.5.0 release we should consider removing the operator from
the parser.
Diffstat (limited to 'Changelog.md')
-rw-r--r-- | Changelog.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Changelog.md b/Changelog.md index cbcf83ca..008b3c86 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,6 +2,7 @@ Features: * Parser: Better error message for unexpected trailing comma in parameter lists. + * Syntax Checker: Unary ``+`` is now a syntax error as experimental 0.5.0 feature. Bugfixes: * Parser: Fix source location of VariableDeclarationStatement. |