Results 8 comments of Erin

Hmm, the API even suggests that repository might have existed when I was writing this, I just couldn't find it :thinking: Good to know, thank you!

I don't think either of the Location or Content-Location headers can be used to approriately convey "this is an alternative URL at which you can perform a GET request to...

WRT ID properties: I'd suggest leaving them as is and content negotiating on the existing endpoints. AP clients are required to set their Accept header when doing a GET request...

I thought about that, but it opens up memcpy esque cans of worms (what do we do if they're overlapping). Nothing insurmountable but I've never actually needed to move multiple

By the way: one long term direction I see coming out of adding these trace hooks is that it would allow List, Map, etc to be less special cased inside...

WrenHandle roots the target object - preventing it from being garbage collected. This does not - it only keeps the target object alive as long as some object is tracing...

As for WrenWeakValue - weak values in other languages automatically set themselves to NULL if their target is freed; this isn't the case here (any RawValue you don't trace will...

I did a bit of digging and the analogous feature in v8 is called `v8::TracedReference`. SpiderMonkey has an equivalent, but I couldn't find the documentation. JavaScriptCore has `JSManagedValue` with the...