Completed
Details
Assignee
Mike FikesMike FikesReporter
Mike FikesMike FikesApproval
AcceptedPatch
Code and TestPriority
Minor
Details
Details
Assignee
Mike Fikes
Mike FikesReporter
Mike Fikes
Mike FikesApproval
Accepted
Patch
Code and Test
Priority
Created July 9, 2018 at 6:29 PM
Updated July 10, 2018 at 1:56 AM
Resolved July 10, 2018 at 1:56 AM
There appears to be a regression introduced somewhere along the line that prevents overriding the printing of objects. (If you look in the code history you can see that this was previously possible.)
Whatever the root cause, we currently have a check for
implements?
inpr-writer-impl
but not a check forsatisfies?
before theobject?
branch is taken, which prevents code like the following from working:In Clojure, you can override the printing of objects with code like
Any associated tests should go in the
cljs.extend-to-object-test
namespace.