主な変更: - ✅ 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>
12 lines
198 B
Plaintext
12 lines
198 B
Plaintext
// ok: alias is used
|
|
using "selfhost.shared.common.string_helpers" as Str
|
|
|
|
static box Main {
|
|
method main() {
|
|
local s = "abc"
|
|
// use alias
|
|
local n = Str.to_i64("42")
|
|
return 0
|
|
}
|
|
}
|