Skip to content

Commit

Permalink
Merge pull request icsharpcode#1 from raol/405-fix
Browse files Browse the repository at this point in the history
icsharpcode#405 final fix.
  • Loading branch information
nikeee committed Jan 13, 2014
2 parents f23eee3 + 4fa6730 commit 612148e
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 612148e

Please sign in to comment.