oxc/crates
u9g b346a9ad6d
feat(query): New types and new fields for existing types (#746)
```diff
+ Argument.value
+ Argument implements HasSpan
+ ArgumentAST

- FnCall.arguments
+ FnCall.argument
- FnCallAST.arguments
+ FnCallAST.argument

+ interface Function
+ Function.is_async
+ Function.is_generator
+ Function.parameter
+ Function implements Expression
+ Function implements HasSpan

+ Parameter
+ Parameter.is_readonly
+ Parameter.assignment
+ Parameter.type_annotation
+ Parameter implements HasSpan
+ ParameterAST

+ ArrowFunction implements Function
+ ArrowFunction implements Expression
+ ArrowFunctionAST implements Function
+ ArrowFunctionAST implements Expression


+ FnDeclaration implements Function
+ FnDeclaration implements Expression
+ FnDeclarationAST implements Function
+ FnDeclarationAST implements Expression
```
2023-08-16 00:56:43 -04:00
..
oxc chore(oxc): remove mention of nightly 2023-07-27 14:14:56 +08:00
oxc_allocator refactor: improve code coverage in various places (#721) 2023-08-11 15:17:49 +08:00
oxc_ast refactor: improve code coverage in various places (#721) 2023-08-11 15:17:49 +08:00
oxc_ast_lower fix(ast_lower): remove wrong usage of SymbolFlags::Function (#680) 2023-08-15 11:37:50 +08:00
oxc_cli fix(parser,semantic): make semantic own Trivias (#711) 2023-08-10 15:30:32 +08:00
oxc_diagnostics chore: release crates as v0.1.0 2023-07-27 13:54:17 +08:00
oxc_formatter feat(formatter): add "Quote Props" option (#652) 2023-08-15 11:40:38 +08:00
oxc_hir refactor: improve code coverage in various places (#721) 2023-08-11 15:17:49 +08:00
oxc_index chore: release crates as v0.1.0 2023-07-27 13:54:17 +08:00
oxc_linter fix(linter): perf @eslint/no-shadow-restricted-names check (#617) (#743) 2023-08-16 12:24:52 +08:00
oxc_macros refactor(linter): manually declare lint rules because cargo fmt breaks (#671) 2023-07-31 15:16:21 +08:00
oxc_minifier refactor(ast): use atom for Directive and Hashbang (#701) 2023-08-09 13:52:56 +08:00
oxc_napi chore(rust): update crate info, add minimal rust-version, add categories 2023-07-27 13:33:18 +08:00
oxc_parser chore(parser): add an AST Send example (#712) 2023-08-10 15:56:31 +08:00
oxc_query feat(query): New types and new fields for existing types (#746) 2023-08-16 00:56:43 -04:00
oxc_resolver feat(resolver): handle path alias with # (#739) 2023-08-14 15:04:09 +08:00
oxc_semantic fix(parser,semantic): make semantic own Trivias (#711) 2023-08-10 15:30:32 +08:00
oxc_span refactor: improve code coverage in various places (#721) 2023-08-11 15:17:49 +08:00
oxc_syntax refactor: improve code coverage in various places (#721) 2023-08-11 15:17:49 +08:00
oxc_type_synthesis chore(rust): update crate info, add minimal rust-version, add categories 2023-07-27 13:33:18 +08:00
oxc_wasm feat(website): add query playground (#698) 2023-08-11 10:53:21 +08:00