oxc/crates/oxc_syntax
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
..
src fix(syntax): correct is_reserved_keyword_or_global_object's incorrect function calling. (#4484) 2024-07-26 17:20:10 -04:00
Cargo.toml refactor(syntax): use NonMaxU32 for IDs (#4467) 2024-07-26 00:14:47 +00:00
CHANGELOG.md Release crates v0.22.0 (#4434) 2024-07-24 08:23:27 +08:00