jasongilman / proto-repl

A Clojure Development Environment package for the Atom editor
https://atom.io/packages/proto-repl
MIT License
563 stars 50 forks source link

Fails to provide an expandable view when value in map is a primitive array type #235

Open ghost opened 7 years ago

ghost commented 7 years ago

By array I mean java primitive array, as in [Ljava.lang.String;.

Minimal example:

[{:foo 1}
 {:bar 2}
 {:xan 3}]

Gives what you expect, with an expandable view. However,

[{:foo 1}
 {:bar 2}
 {:xan 3}
 {:xoo (class (into-array []))}]

Provides a view of the data, but it isn't expandable.