Alec Larson
Alec Larson
I'm also curious how you conjured the `IOI2CRequest` incantations. Is there any guidance out there on that? Apple doesn't seem to document such things, although I found [this example](https://opensource.apple.com/source/IOGraphics/IOGraphics-409/tools/i2cexample.c.auto.html) (but...
For context, here's what I mean by "unpack chaining" https://github.com/alloc/ople/blob/99ccaa09a9e8aa0e02f156022719c6ee59d5f5e0/packages/nason/src/batch.ts#L40-L48 It's unpacking a series of encoded function calls, and `val.buffer` refers to the entire buffer, so the byte offset needs...
Possibly. I'm using a fork that uses the `val.slice(1)` workaround, so it's not a big priority for me right now. ^^
Writing an encoder that supports nested `Map` would probably reproduce the issue, but don't quote me on that Basically, it happens when unpacking in a loop and interweaving nested `decode`...
I would really like to have this. 😄
This feature would be much appreciated, as `export const` breaks Fast Refresh when its value is not a component.
It would be great to see some progress on this. Is there a workaround?
Maybe `traverse` could accept an optional key? Then we could do this: ```js path.parentPath.traverse(path.parentKey, visitor) ``` Only works if `.parentPath` is defined though
@JLHwung In that case, calling `.skip()` on `fooPath` (within the visitor) would not affect the `.traverse` call though, right?
Okay, thanks to the [example](https://github.com/fanout/pushpin/blob/master/examples/config/pushpin.conf) `pushpin.conf`, I think I've got it: ```ini [global] include={libdir}/internal.conf [runner] services=mongrel2,m2adapter,zurl,pushpin-proxy,pushpin-handler http_port=7999 [proxy] sig_key=changeme ```