mirror of
https://github.com/denoland/deno.git
synced 2024-11-02 09:34:19 -04:00
2c7174a5a2
Closes #17831. This change hides the indices of any indexed collection when triggering tab completion for object properties in the REPL. An example is shown in the issue, but for verbosity here is another. Before the change: ``` > const arr = new Uint8ClampedArray([1, 2, 3]) undefined > arr. 0 map 1 reverse 2 reduce ... ``` After the change: ``` > const arr = new Uint8ClampedArray([1, 2, 3]) undefined > arr. constructor reduce BYTES_PER_ELEMENT reduceRight buffer set ... ``` Co-authored-by: David Sherret <dsherret@users.noreply.github.com> |
||
---|---|---|
.. | ||
cdp.rs | ||
channel.rs | ||
editor.rs | ||
mod.rs | ||
session.rs |