Skip to content

Commit

Permalink
Merge pull request #428 from raol/405-fix
Browse files Browse the repository at this point in the history
#405 final fix.
  • Loading branch information
dgrunwald committed Apr 5, 2014
2 parents ff0a6d3 + 4fa6730 commit 7d674c9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -804,7 +804,7 @@ Expression ConvertArrayIndex(InvocationExpression invocation)
return new IndexerExpression(targetConverted, indexConverted);
}
IList<Expression> indexesConverted = ConvertExpressionsArray(index);
if (indexConverted != null) {
if (indexesConverted != null) {
return new IndexerExpression(targetConverted, indexesConverted);
}
return null;
Expand Down

0 comments on commit 7d674c9

Please sign in to comment.