Kevin Barabash
Kevin Barabash
I need to build wasm32-wasi bundles because my rust project relies on some C code and wasm-unknown-unknown doesn't C code in rust projects. Would it be possible to provide a...
I was experimenting and it does cut down on the bundle size. It looks like terser-js can do this for anonymous function expressions. My guess is that it won't do...
I'm using rollup-plugin-purs with a project that uses React.Basic. One of its dependencies contains code that causes an error in the purs plugin. The code in question from Web.HTML.HTMLTrackElement/index.js: ```...
I'd like to give each of the nodes generated by my parser a unique ID. ~Unfortunately, `map_to_span` takes a `Fn` instead of a `FnMut` so it looks like this isn't...
## Summary: This PR updates LabeledTextField to accept for the 'label' and 'description' props and updates field-heading.js to wrap them in the appropriate typography component. If developers need to customize...
## Summary: `@storybook/interactions` allows you to write tests using `@testing-library` within Storybook stories. If a story has a test, it will show up in the "Interactions" panel and will be...
Is the memory map serializable?
I've included `` but the following code produces an error for `_Bool`. ``` _Bool a = true; ``` `` makes the following defines: ``` #define bool _Bool #define true 1...
It allows the following code which isn't valid: ``` let {a, b, [c] = 5, ...rest} = letters; ``` Currently `object_assignment_pattern` is defined as: ```javascript object_assignment_pattern: $ => seq( field('left',...
Playground link: https://hegel.js.org/try#MYGwhgzhAEBiD29oG8BQ0PQEZgE4AowAabAShXUytwFMAXAV1wDtoBZMOgCwDpcxmAE3gBbfOQB80AAw8ArNAD80MNABc2ANyUMAX1Q7sYAF6ESWcmirV6TVtwCWEHjgLEy2qvt1A ```js class Foo { bar(a, b) { return Math.random() > 0.5 ? a : b; } baz(a, b) { return this.bar(a, b); } } ```