Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-05-21 | refactor(core): set function names for ops in JavaScript (#19208) | Bartek IwaĆczuk | |
This commit ensures that JavaScript functions generated for registered ops have proper names set up - the function name matches the name of the op. A test was added in `core/runtime.rs` that verifies this. Closes https://github.com/denoland/deno/issues/19206 | |||
2023-04-30 | perf(core): async op pseudo-codegen and performance work (#18887) | Matt Mastracci | |
Performance: ``` async_ops.js: 760k -> 1030k (!) async_ops_deferred.js: 730k -> 770k Deno.serve bench: 118k -> 124k WS test w/ third_party/prebuilt/mac/load_test 100 localhost 8000 0 0: unchanged Startup time: approx 0.5ms slower (13.7 -> 14.2ms) ``` |