Commit c8dfbfe8 authored by verwaest's avatar verwaest Committed by Commit bot

Also return the resulting array in GetSortedArrayKeys

BUG=

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

Cr-Commit-Position: refs/heads/master@{#34775}
parent ecc70d69
...@@ -88,6 +88,7 @@ function GetSortedArrayKeys(array, indices) { ...@@ -88,6 +88,7 @@ function GetSortedArrayKeys(array, indices) {
keys.push(i); keys.push(i);
} }
} }
return keys;
} }
return InnerArraySort(indices, indices.length, KeySortCompare); return InnerArraySort(indices, indices.length, KeySortCompare);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment