diff options
author | Lefteris Karapetsas <lefteris@refu.co> | 2014-11-28 18:17:18 +0800 |
---|---|---|
committer | Lefteris Karapetsas <lefteris@refu.co> | 2014-11-28 18:17:18 +0800 |
commit | db7b118ece60ae20f20c871bd257a1af5366423f (patch) | |
tree | dcef7027806d79c08a88406f77d2c0684f11b975 /Scanner.h | |
parent | e3e90c4e6bf3a5cb6399d6cfb8677d79a4a3f166 (diff) | |
download | dexon-solidity-db7b118ece60ae20f20c871bd257a1af5366423f.tar.gz dexon-solidity-db7b118ece60ae20f20c871bd257a1af5366423f.tar.zst dexon-solidity-db7b118ece60ae20f20c871bd257a1af5366423f.zip |
Solidity natspec docstring test improvements
- Adding a test for docstring being between function signature and
function body
- Properly checking for exceptions in parsing
- Small parser fix
Diffstat (limited to 'Scanner.h')
-rw-r--r-- | Scanner.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -109,8 +109,7 @@ public: class LiteralScope { public: - explicit LiteralScope(Scanner* _self, enum LiteralType _type) - : m_type(_type) + explicit LiteralScope(Scanner* _self, enum LiteralType _type): m_type(_type) , m_scanner(_self) , m_complete(false) { |