diff options
author | chriseth <chris@ethereum.org> | 2018-02-13 23:48:21 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-13 23:48:21 +0800 |
commit | f84b2c451425a5913ef3decc18cf56ef95988d83 (patch) | |
tree | 553e77484feb69103ad8fc05e6b421390872d9a9 /Changelog.md | |
parent | 8f8ad3840eecd7b22565e0c36eb55ceca5d5b57a (diff) | |
parent | 1dcd7c5e0b249511dca34dff0507b432db3bf7d1 (diff) | |
download | dexon-solidity-f84b2c451425a5913ef3decc18cf56ef95988d83.tar.gz dexon-solidity-f84b2c451425a5913ef3decc18cf56ef95988d83.tar.zst dexon-solidity-f84b2c451425a5913ef3decc18cf56ef95988d83.zip |
Merge pull request #3147 from Balajiganapathi/alternative_scope
Suggest alternatives when identifier not found. Closes #3058.
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 ab1b35cd..1b4149a5 100644 --- a/Changelog.md +++ b/Changelog.md @@ -8,6 +8,7 @@ Features: * Inline Assembly: Issue warning for using jump labels (already existed for jump instructions). * Inline Assembly: Support some restricted tokens (return, byte, address) as identifiers in Julia mode. * Optimiser: Replace `x % 2**i` by `x & (2**i-1)`. + * Resolver: Suggest alternative identifiers if a given identifier is not found. * SMT Checker: If-else branch conditions are taken into account in the SMT encoding of the program variables. * Syntax Checker: Deprecate the ``var`` keyword (and mark it an error as experimental 0.5.0 feature). |