Ingvar Stepanyan

Results 1089 comments of Ingvar Stepanyan

> Just to expand on this, @devongovett helpfully pulled together some docs links at parcel-bundler/parcel#7623 (comment) that show that this has gained a lot of support Yeah that's what I...

Ah yeah, for cross-origin it probably is helpful. I was referring to a more general pattern.

@skrat `merge` also doesn't exist at the moment. I don't care whether it will be called `merge`, `extend` or `assign`, the functionality is what's interesting.

@nmn That could work together with Value Objects I guess.

For those who wonder about the status, see https://github.com/RReverser/babel-plugin-uglify/pull/4#issuecomment-170895081. PRs welcome.

@qm3ster Nope, just not supported for Babel 6 due to breaking changes described earlier. Although, after these years, there are moves to provide layer for ESTree in Babel 7 or...

@ftorrado Sure, you can use `--in-source-map` option of UglifyJS for that with either `inline` option for piping or explicit filename if you're running it as separate commands. Although that question...

> @RReverser @v1gnesh @constfold @wcampbell0x2a We can continue the discussion here. Would a `ctx_nested` attribute be sufficient? Yeah looks exactly like what I had in mind in https://github.com/sharksforarms/deku/issues/225#issuecomment-864578411: > It's...

> @RReverser Is there a reason why you wouldn't want to abstract this into a separate type? Leb128 can be used for variety of types (u8, u16, u32, usize, i8,...

I'm doing something very similar to what deku does in wasmbin - self-generating parser/serializer for Wasm - where I'm using custom derive implementation. Example: https://github.com/GoogleChromeLabs/wasmbin/blob/3508d13398c59a337d42eaa8a49f9f02434fee9d/src/sections.rs#L197-L237 I was thinking of what...