Also return the resulting array in GetSortedArrayKeys

BUG=

Review URL: https://codereview.chromium.org/1794233006

Cr-Commit-Position: refs/heads/master@{#34775}
This commit is contained in:
verwaest 2016-03-15 03:26:52 -07:00 committed by Commit bot
parent ecc70d69d4
commit c8dfbfe8c7

View File

@ -88,6 +88,7 @@ function GetSortedArrayKeys(array, indices) {
keys.push(i);
}
}
return keys;
}
return InnerArraySort(indices, indices.length, KeySortCompare);
}