swc/plugin
Donny/강동윤 4c983e9158
perf(es/codegen, es/parser): Improve performance (#2406)
ast_node:
 - Make `.span()` inlinable.

swc_ecma_codegen:
 - Reduce call to *heavy* `.span()` calls.

swc_ecma_parser:
 - Reduce `memmove` by using typed-arena.

swc_bundler:
 - Make `Bundle.bundle` take `&mut self`.
 - Make drop concurrent.
2021-10-15 12:49:37 +09:00
..
build feat(plugin): Groundwork for rust plugin system (#1893) 2021-08-25 15:07:09 +00:00
runner perf(es/codegen, es/parser): Improve performance (#2406) 2021-10-15 12:49:37 +09:00
scripts feat(plugin): Groundwork for rust plugin system (#1893) 2021-08-25 15:07:09 +00:00
src feat(plugin/api): Determine plugin api (#2199) 2021-10-09 17:47:42 +09:00
testing perf(es/codegen, es/parser): Improve performance (#2406) 2021-10-15 12:49:37 +09:00
tests feat(plugin/api): Determine plugin api (#2199) 2021-10-09 17:47:42 +09:00
Cargo.toml chore(plugin): Publish 2021-10-10 20:18:19 +09:00
README.md feat(plugin): Groundwork for rust plugin system (#1893) 2021-08-25 15:07:09 +00:00

swc_plugin

Base runtime for swc plugins, written in rust.