aboutsummaryrefslogtreecommitdiffstats
path: root/Parser.h
diff options
context:
space:
mode:
authorLefteris Karapetsas <lefteris@refu.co>2015-02-25 00:31:06 +0800
committerLefteris Karapetsas <lefteris@refu.co>2015-02-25 00:31:06 +0800
commitfb328b778cdd0c6022ce072689cb3d8b333232f8 (patch)
tree37fa70e738e2df43d1f912ff5cc4b02af39472fd /Parser.h
parent12c32392abc4af2f7da0793e178705c55c742e79 (diff)
downloaddexon-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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Parser.h b/Parser.h
index 9e4c7bb2..87eb2f8f 100644
--- a/Parser.h
+++ b/Parser.h
@@ -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();