Richard Davison

Results 29 comments of Richard Davison

I already created an issue and the author of Terser is working very hard to fix it: https://github.com/terser-js/terser/issues/432. As a temporary workaround, use this config to still have minification enabled:...

I'd like to suggest that handling integers exceeding 64 bits by default as floats, unless explicitly opted out, could be a more accommodating approach. It's worth considering the essence of...

> @richarddd I think that's what @Yuhta proposed in [facebookincubator/velox#8066 (comment)](https://github.com/facebookincubator/velox/issues/8066#issuecomment-1858121217) > > PR invited. I would if I could. My c++ skills are virtually non-existent. I've created a PR...

@ErosZy would you be able to update the PR 👆

> @bellard @richarddd Sorry, I'm a bit confused because a `line_number` may have multiple `column_numbers`. How should this be merged into `OP_line_num`? A common scenario is when code is compressed...

> P.S. Super interested to know you use case, and any benchmarking that we can use to improve snmalloc. I'm running snmalloc as an allocator for a JavaScript runtime written...

Its now way better 🎉 ```shell time qjs -e "console.log(1)" 1 qjs -e "console.log(1)" 0.00s user 0.00s system 37% cpu 0.011 total ``` ```shell time ./tjs eval "console.log(1)" 1 ./tjs...

I reckon there is much speed improvement to gain further. @saghul what do you think about this suggestion: - Remove the current bundling of all the core and std libraries...

The thing is that I'm running txiki in a Serverless environment at scale where every extra ms incurs cost. That's why startup time is very important. Yes, it will make...