oxc/crates
u9g 3b3babed2e
feat(query): Add types and add field to Argument (#765)
```diff
+ Argument.is_spread

+ DoWhileStatement
+ DoWhileStatement implements HasSpan
+ DoWhileStatement implements Statement
+ DoWhileStatement.body
+ DoWhileStatement.condition

+ DoWhileStatementAST
+ DoWhileStatementAST implements HasSpan
+ DoWhileStatementAST implements Statement
+ DoWhileStatementAST implements DoWhileStatement
+ DoWhileStatementAST implements ASTNode

+ ForStatement
+ ForStatement implements HasSpan
+ ForStatement implements Statement
+ ForStatement.body
+ ForStatement.step
+ ForStatement.condition

+ ForStatementAST
+ ForStatementAST implements HasSpan
+ ForStatementAST implements Statement
+ ForStatementAST implements ASTNode
+ ForStatementAST implements ForStatement

+ New
+ New implements Expression
+ New implements HasSpan
+ New.callee
+ New.argument

+ NewAST
+ NewAST implements Expression
+ NewAST implements HasSpan
+ NewAST implements New
+ NewAST implements ASTNode

+ TernaryExpression
+ TernaryExpression implements HasSpan
+ TernaryExpression implements Expression
+ TernaryExpression.condition
+ TernaryExpression.if_true
+ TernaryExpression.if_false

+ TernaryExpressionAST
+ TernaryExpressionAST implements TernaryExpression
+ TernaryExpressionAST implements HasSpan
+ TernaryExpressionAST implements ASTNode
+ TernaryExpressionAST implements Expression

+ Throw
+ Throw implements HasSpan
+ Throw implements Expression
+ Throw.to_throw

+ ThrowAST
+ ThrowAST implements HasSpan
+ ThrowAST implements Throw
+ ThrowAST implements ASTNode
+ ThrowAST implements Expression

```
2023-08-20 14:54:25 +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 feat(ast): add SymbolId and ReferenceId (#755) 2023-08-19 18:09:47 +08:00
oxc_ast_lower feat(ast): add SymbolId and ReferenceId (#755) 2023-08-19 18:09:47 +08:00
oxc_cli refactor(cli,linter): move the lint runner from cli to linter (#764) 2023-08-20 00:59:49 +08:00
oxc_diagnostics refactor(cli,diagnostics): implement DiagnosticService (#762) 2023-08-19 18:18:09 +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,linter): move the lint runner from cli to linter (#764) 2023-08-20 00:59:49 +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 feat(ast): add SymbolId and ReferenceId (#755) 2023-08-19 18:09:47 +08:00
oxc_query feat(query): Add types and add field to Argument (#765) 2023-08-20 14:54:25 +08:00
oxc_resolver feat(resolver): implement tsconfig-paths (#750) 2023-08-17 16:24:46 +08:00
oxc_semantic feat(ast): add SymbolId and ReferenceId (#755) 2023-08-19 18:09:47 +08:00
oxc_span refactor: improve code coverage in various places (#721) 2023-08-11 15:17:49 +08:00
oxc_syntax feat(ast): add SymbolId and ReferenceId (#755) 2023-08-19 18:09:47 +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