diff options
author | LianaHus <liana@ethdev.com> | 2016-03-10 00:23:05 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2016-03-12 00:49:32 +0800 |
commit | 58e07151e3fd8503bc0418dba452a822f03ff260 (patch) | |
tree | 343e697c2ab83417c67b8b7e193a87347a15c039 /libsolidity/parsing/Scanner.h | |
parent | 67793f1aedab8cae956e8df0eec5e6a99f06b87b (diff) | |
download | dexon-solidity-58e07151e3fd8503bc0418dba452a822f03ff260.tar.gz dexon-solidity-58e07151e3fd8503bc0418dba452a822f03ff260.tar.zst dexon-solidity-58e07151e3fd8503bc0418dba452a822f03ff260.zip |
- inline and assembly keywords added
- some style fixes
Diffstat (limited to 'libsolidity/parsing/Scanner.h')
-rw-r--r-- | libsolidity/parsing/Scanner.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libsolidity/parsing/Scanner.h b/libsolidity/parsing/Scanner.h index 8dde922d..cffcec8e 100644 --- a/libsolidity/parsing/Scanner.h +++ b/libsolidity/parsing/Scanner.h @@ -108,13 +108,13 @@ public: /// Resets scanner to the start of input. void reset(); - /// Returns the next token and advances input + /// @returns the next token and advances input Token::Value next(); ///@{ ///@name Information about the current token - /// Returns the current token + /// @returns the current token Token::Value currentToken() { return m_currentToken.token; @@ -138,7 +138,7 @@ public: ///@{ ///@name Information about the next token - /// Returns the next token without advancing input. + /// @returns the next token without advancing input. Token::Value peekNextToken() const { return m_nextToken.token; } SourceLocation peekLocation() const { return m_nextToken.location; } std::string const& peekLiteral() const { return m_nextToken.literal; } |