oxc/crates
Ethan Goh 1667491868
fix(syntax): correct is_reserved_keyword_or_global_object's incorrect function calling. (#4484)
It may be a problem, but doesn't matter previously.

Formerly, the `is_reserved_keyword_or_global_object` is
`is_reserved_keyword(s) || is_reserved_keyword(s)`. I think it should be
`is_reserved_keyword(s) || is_global_object(s)` according to its name.

Also, the `.idea` may be because I am using RustRover, which may
automatically create `.idea` folder. So I ignore it in `.gitignore`.

I think I can contribute to `oxc` more when I am free.
2024-07-26 17:20:10 -04:00
..
oxc Release crates v0.22.0 (#4434) 2024-07-24 08:23:27 +08:00
oxc_allocator Release crates v0.22.0 (#4434) 2024-07-24 08:23:27 +08:00
oxc_ast feat(ast): add AstKind::AssignmentTargetPattern, AstKind::ArrayAssignmentTarget and AstKind::ObjectAssignmentTarget (#4456) 2024-07-25 09:32:33 +00:00
oxc_ast_macros Release crates v0.22.0 (#4434) 2024-07-24 08:23:27 +08:00
oxc_cfg Release crates v0.22.0 (#4434) 2024-07-24 08:23:27 +08:00
oxc_codegen chore(codegen): port over esbuild codegen tests (all ignored right now) (#4457) 2024-07-25 10:00:34 +00:00
oxc_diagnostics Release crates v0.22.0 (#4434) 2024-07-24 08:23:27 +08:00
oxc_index Release crates v0.22.0 (#4434) 2024-07-24 08:23:27 +08:00
oxc_isolated_declarations Release crates v0.22.0 (#4434) 2024-07-24 08:23:27 +08: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): use diagnostic codes in lint rules (#4349) 2024-07-20 03:35:00 +00:00
oxc_linter perf(linter): no_shadow_restricted_names only look up name in hashmap once (#4472) 2024-07-26 01:30:06 +01:00
oxc_macros perf(linter): disable lint rules by file type (#4380) 2024-07-21 15:22:54 +00:00
oxc_mangler refactor(syntax): give ScopeId a niche (#4468) 2024-07-26 00:14:50 +00:00
oxc_minifier chore(codegen): port over esbuild codegen tests (all ignored right now) (#4457) 2024-07-25 10:00:34 +00:00
oxc_module_lexer Release crates v0.22.0 (#4434) 2024-07-24 08:23:27 +08:00
oxc_parser Release crates v0.22.0 (#4434) 2024-07-24 08:23:27 +08:00
oxc_prettier chore: remove unsafe_code = "warn" rust lint 2024-07-15 10:39:08 +08:00
oxc_semantic refactor(semantic): methods take Span as param, not &Span (#4470) 2024-07-26 00:14:56 +00:00
oxc_sourcemap perf(sourcemap): pre allocate String buf while encoding (#4476) 2024-07-26 13:58:09 +00:00
oxc_span Release crates v0.22.0 (#4434) 2024-07-24 08:23:27 +08:00
oxc_syntax fix(syntax): correct is_reserved_keyword_or_global_object's incorrect function calling. (#4484) 2024-07-26 17:20:10 -04:00
oxc_transformer refactor(semantic): populate declarations field in SymbolTable::create_symbol (#4461) 2024-07-26 00:14:32 +00:00
oxc_traverse perf(semantic): remove span field from Reference (#4464) 2024-07-26 00:14:38 +00:00
oxc_wasm refactor(syntax): give ScopeId a niche (#4468) 2024-07-26 00:14:50 +00:00