diff options
author | Lefteris Karapetsas <lefteris@refu.co> | 2015-02-25 00:31:06 +0800 |
---|---|---|
committer | Lefteris Karapetsas <lefteris@refu.co> | 2015-02-25 00:31:06 +0800 |
commit | fb328b778cdd0c6022ce072689cb3d8b333232f8 (patch) | |
tree | 37fa70e738e2df43d1f912ff5cc4b02af39472fd /Parser.h | |
parent | 12c32392abc4af2f7da0793e178705c55c742e79 (diff) | |
download | dexon-solidity-fb328b778cdd0c6022ce072689cb3d8b333232f8.tar.gz dexon-solidity-fb328b778cdd0c6022ce072689cb3d8b333232f8.tar.zst dexon-solidity-fb328b778cdd0c6022ce072689cb3d8b333232f8.zip |
Changes after rebase on top of Array Parsing
Diffstat (limited to 'Parser.h')
-rw-r--r-- | Parser.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -114,11 +114,11 @@ private: /// Returns a typename parsed in look-ahead fashion from something like "a[8][2**70]". ASTPointer<TypeName> typeNameIndexAccessStructure( ASTPointer<PrimaryExpression> const& _primary, - std::vector<std::pair<ASTPointer<Expression>, Location>> const& _indices); + std::vector<std::pair<ASTPointer<Expression>, SourceLocation>> const& _indices); /// Returns an expression parsed in look-ahead fashion from something like "a[8][2**70]". ASTPointer<Expression> expressionFromIndexAccessStructure( ASTPointer<PrimaryExpression> const& _primary, - std::vector<std::pair<ASTPointer<Expression>, Location>> const& _indices); + std::vector<std::pair<ASTPointer<Expression>, SourceLocation>> const& _indices); /// If current token value is not _value, throw exception otherwise advance token. void expectToken(Token::Value _value); Token::Value expectAssignmentOperator(); |