aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/parsing/Parser.h
diff options
context:
space:
mode:
authorLianaHus <liana@ethdev.com>2016-03-10 00:23:05 +0800
committerchriseth <c@ethdev.com>2016-03-12 00:49:32 +0800
commit58e07151e3fd8503bc0418dba452a822f03ff260 (patch)
tree343e697c2ab83417c67b8b7e193a87347a15c039 /libsolidity/parsing/Parser.h
parent67793f1aedab8cae956e8df0eec5e6a99f06b87b (diff)
downloaddexon-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/Parser.h')
-rw-r--r--libsolidity/parsing/Parser.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libsolidity/parsing/Parser.h b/libsolidity/parsing/Parser.h
index 9db3b3c4..a093cc5b 100644
--- a/libsolidity/parsing/Parser.h
+++ b/libsolidity/parsing/Parser.h
@@ -124,12 +124,12 @@ private:
/// For source code of the form "a[][8]" ("IndexAccessStructure"), this is not possible to
/// decide with constant look-ahead.
LookAheadInfo peekStatementType() const;
- /// Returns a typename parsed in look-ahead fashion from something like "a.b[8][2**70]".
+ /// @returns a typename parsed in look-ahead fashion from something like "a.b[8][2**70]".
ASTPointer<TypeName> typeNameIndexAccessStructure(
std::vector<ASTPointer<PrimaryExpression>> const& _path,
std::vector<std::pair<ASTPointer<Expression>, SourceLocation>> const& _indices
);
- /// Returns an expression parsed in look-ahead fashion from something like "a.b[8][2**70]".
+ /// @returns an expression parsed in look-ahead fashion from something like "a.b[8][2**70]".
ASTPointer<Expression> expressionFromIndexAccessStructure(
std::vector<ASTPointer<PrimaryExpression>> const& _path,
std::vector<std::pair<ASTPointer<Expression>, SourceLocation>> const& _indices