wtf-bindings: use WTF ASSERT() so debug builds compile #30992
Claude / Claude Code Review
completed
May 18, 2026 in 17m 13s
Code review found 1 potential issue
Found 1 candidates, confirmed 1. See review comments for details.
Details
| Severity | Count |
|---|---|
| 🔴 Important | 0 |
| 🟡 Nit | 1 |
| 🟣 Pre-existing | 0 |
| Severity | File:Line | Issue |
|---|---|---|
| 🟡 Nit | test/js/bun/terminal/terminal.test.ts:290-292 |
Comment groups BSD on wrong side of ICANON value |
Annotations
Check warning on line 292 in test/js/bun/terminal/terminal.test.ts
claude / Claude Code Review
Comment groups BSD on wrong side of ICANON value
Tiny nit: the comment says "ICANON is 0x2 on Linux/BSD but 0x100 on Darwin", but BSD is on the wrong side — FreeBSD/NetBSD/OpenBSD all use `0x100` (Darwin inherited BSD termios), only Linux uses `0x2`. The review comment this responds to even said "on macOS/BSD, ICANON is 0x100". No functional impact since Bun only targets linux/darwin/windows; consider just dropping "/BSD" or moving it to the Darwin side.
Loading