oxc/crates
rzvxa b936162093 refactor(ast/ast_builder)!: shorter allocator utility method names. (#4122)
This PR serves two purposes, First off it would lower the amount of characters we have to type in for a simple operation such as wrapping an expression in a vector. Secondly, it would follow the generated names more closely since nowhere else in the builder we do have `new_xxx`, We always say `xxx` since a builder always constructs something.

```
new_vec -> vec
new_vec_single -> vec1*
new_vec_from_iter -> vec_from_iter
new_vec_with_capacity -> vec_with_capacity
new_str -> str
new_atom -> atom
```

`*` This one is the main motivation behind this PR, It saves 10 characters!
2024-07-09 12:16:38 +00:00
..
oxc Release crates v0.18.0 (#4136) 2024-07-09 19:56:10 +08:00
oxc_allocator Release crates v0.18.0 (#4136) 2024-07-09 19:56:10 +08:00
oxc_ast refactor(ast/ast_builder)!: shorter allocator utility method names. (#4122) 2024-07-09 12:16:38 +00:00
oxc_ast_macros Release crates v0.18.0 (#4136) 2024-07-09 19:56:10 +08:00
oxc_cfg Release crates v0.18.0 (#4136) 2024-07-09 19:56:10 +08:00
oxc_codegen Release crates v0.18.0 (#4136) 2024-07-09 19:56:10 +08:00
oxc_diagnostics Release crates v0.18.0 (#4136) 2024-07-09 19:56:10 +08:00
oxc_index Release crates v0.18.0 (#4136) 2024-07-09 19:56:10 +08:00
oxc_isolated_declarations refactor(ast/ast_builder)!: shorter allocator utility method names. (#4122) 2024-07-09 12:16:38 +00:00
oxc_js_regex chore: crates should only publish src and examples directory 2024-06-08 16:35:16 +08:00
oxc_language_server refactor(linter): LintContext can now only be constructed with a cfg enabled semantic. (#3761) 2024-06-19 13:01:33 +00:00
oxc_linter feat(linter): add fixer for prefer-node-protocol (#4129) 2024-07-09 03:13:24 +00:00
oxc_macros chore: do not compile test crates that have no tests 2024-06-24 00:20:04 +08:00
oxc_minifier refactor(ast/ast_builder)!: shorter allocator utility method names. (#4122) 2024-07-09 12:16:38 +00:00
oxc_module_lexer Release crates v0.18.0 (#4136) 2024-07-09 19:56:10 +08:00
oxc_parser refactor(ast/ast_builder)!: shorter allocator utility method names. (#4122) 2024-07-09 12:16:38 +00:00
oxc_prettier feat(ast,codegen): add TSParenthesizedType and print type parentheses correctly (#3979) 2024-06-30 07:57:48 +00:00
oxc_semantic Release crates v0.18.0 (#4136) 2024-07-09 19:56:10 +08:00
oxc_sourcemap Release crates v0.18.0 (#4136) 2024-07-09 19:56:10 +08:00
oxc_span Release crates v0.18.0 (#4136) 2024-07-09 19:56:10 +08:00
oxc_syntax Release crates v0.18.0 (#4136) 2024-07-09 19:56:10 +08:00
oxc_transformer refactor(ast/ast_builder)!: shorter allocator utility method names. (#4122) 2024-07-09 12:16:38 +00:00
oxc_traverse Release crates v0.18.0 (#4136) 2024-07-09 19:56:10 +08:00
oxc_wasm refactor(transformer): pass in symbols and scopes (#3978) 2024-06-30 06:33:48 +00:00