oxc/crates
u9g fd3fa6ca84
feat(query): Add some new types (#761)
```diff
+ BlockStatement
+ BlockStatement implements HasSpan
+ BlockStatement implements Statement
+ BlockStatement.statement

+ BlockStatementAST
+ BlockStatementAST implements BlockStatement
+ BlockStatementAST implements Statement
+ BlockStatementAST implements ASTNode
+ BlockStatementAST implements HasSpan

+ ExpressionStatement
+ ExpressionStatement implements HasSpan
+ ExpressionStatement implements Statement
+ ExpressionStatement.expression

+ ExpressionStatementAST
+ ExpressionStatementAST implements HasSpan
+ ExpressionStatementAST implements ExpressionStatement
+ ExpressionStatementAST implements ASTNode
+ ExpressionStatementAST implements Statement

+ VarRef
+ VarRef implements HasSpan
+ VarRef implements Expression
+ VarRef.name

+ VarRefAST
+ VarRefAST implements HasSpan
+ VarRefAST implements Expression
+ VarRefAST implements VarRef
+ VarRefAST implements ASTNode

+ WhileStatement
+ WhileStatement implements Statement
+ WhileStatement implements HasSpan
+ WhileStatement.condition
+ WhileStatement.body

+ WhileStatementAST
+ WhileStatementAST implements ASTNode
+ WhileStatementAST implements Statement
+ WhileStatementAST implements WhileStatement
+ WhileStatementAST implements HasSpan

```
2023-08-19 16:15:22 +08: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 refactor(cli): split out group options (#760) 2023-08-19 12:09:35 +08:00
oxc_diagnostics chore: release crates as v0.1.0 2023-07-27 13:54:17 +08:00
oxc_formatter feat(formatter): add EndOfLine (#747) 2023-08-17 19:04:23 +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 refactor(cli): split out group options (#760) 2023-08-19 12:09:35 +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: run just fmt 2023-08-17 14:58:59 +08:00
oxc_query feat(query): Add some new types (#761) 2023-08-19 16:15:22 +08:00
oxc_resolver feat(resolver): implement tsconfig-paths (#750) 2023-08-17 16:24:46 +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(formatter): add EndOfLine (#747) 2023-08-17 19:04:23 +08:00