diff options
author | Lefteris Karapetsas <lefteris@refu.co> | 2014-12-18 01:53:18 +0800 |
---|---|---|
committer | Lefteris Karapetsas <lefteris@refu.co> | 2014-12-18 22:03:45 +0800 |
commit | d3234c51b9de3548bef5a2afd0fc55851fce43d7 (patch) | |
tree | 16cd0a7d1fd260e0e278df1ac27ec07cadea7355 /Scanner.h | |
parent | a98afc8eaa20146359dd212fc2eb0bd0fe18d893 (diff) | |
download | dexon-solidity-d3234c51b9de3548bef5a2afd0fc55851fce43d7.tar.gz dexon-solidity-d3234c51b9de3548bef5a2afd0fc55851fce43d7.tar.zst dexon-solidity-d3234c51b9de3548bef5a2afd0fc55851fce43d7.zip |
Work in progress for /** ... */ natspec comments
- Work in progress on the scanner for recognizing the second
type of doxygen comments for Natspec.
Diffstat (limited to 'Scanner.h')
-rw-r--r-- | Scanner.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -190,7 +190,8 @@ private: Token::Value scanIdentifierOrKeyword(); Token::Value scanString(); - Token::Value scanDocumentationComment(); + Token::Value scanSingleLineDocComment(); + Token::Value scanMultiLineDocComment(); /// Scans an escape-sequence which is part of a string and adds the /// decoded character to the current literal. Returns true if a pattern |