Files
bun.sh/misctools
Claude Bot 4497265e34 fix: add missing $ and _ characters to identifier tables
The previous fix for middle dot characters accidentally broke $ and _
character parsing in JavaScript identifiers. These characters are
special cases in ECMAScript that must be explicitly added to the
ID_Start and ID_Continue sets, as they are not included in the
standard Unicode categories.

This restores support for:
- $ in destructuring: import { $ } from "bun"
- _ in variable names: const _private = 123
- All other $ and _ usage in identifiers

While maintaining the fix for Japanese middle dot characters.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-29 06:49:58 +00:00
..
2021-12-17 23:06:56 -08:00
2023-10-05 17:19:33 -07:00
2024-01-15 17:33:33 -08:00