主な変更: - ✅ HC011 (dead methods) 実装・テスト緑 - ✅ HC016 (unused alias) 実装・テスト緑 - ✅ HC017 (non-ascii quotes) 実装完了 - 🔧 tokenizer/parser_core 強化(AST優先ルート) - 🛡️ plugin_guard.rs 追加(stderr専用出力) - 📋 テストインフラ整備(run_tests.sh改善) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
13 lines
185 B
Plaintext
13 lines
185 B
Plaintext
// ng.hako — contains dead method (unused)
|
|
|
|
static box Main {
|
|
method main() {
|
|
// no calls here, unused() is unreachable
|
|
return 0
|
|
}
|
|
method unused() {
|
|
return 1
|
|
}
|
|
}
|
|
|