主な変更: - ✅ 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>
47 lines
1.6 KiB
Plaintext
47 lines
1.6 KiB
Plaintext
using selfhost.shared.common.string_helpers as Str
|
|
|
|
static box RuleIncludeForbiddenBox {
|
|
apply_ast(ast, path, out) {
|
|
if ast == null { return }
|
|
local incs = ast.get("includes"); if incs == null { return }
|
|
local i = 0
|
|
while i < incs.size() {
|
|
local ln = incs.get(i)
|
|
out.push("[HC002] include is forbidden (use using+alias): " + path + ":" + me._itoa(ln))
|
|
i = i + 1
|
|
}
|
|
}
|
|
apply(text, path, out) {
|
|
local lines = me._split_lines(text)
|
|
local i = 0
|
|
while i < lines.size() {
|
|
local ln = me._ltrim(lines.get(i))
|
|
if ln.indexOf('include "') == 0 {
|
|
out.push("[HC002] include is forbidden (use using+alias): " + path + ":" + me._itoa(i+1))
|
|
}
|
|
i = i + 1
|
|
}
|
|
}
|
|
_ltrim(s) { return me._ltrim_chars(s, " \t") }
|
|
_itoa(n) { local v=0+n; if v==0 { return "0" } local out=""; local digits="0123456789"; local tmp=""; while v>0 { local d=v%10; tmp=digits.substring(d,d+1)+tmp; v=v/10 } out=tmp; return out }
|
|
_split_lines(s) {
|
|
local arr = new ArrayBox(); if s == null { return arr }
|
|
local n = s.length(); local last = 0; local i = 0
|
|
while i < n { local ch = s.substring(i,i+1); if ch == "\n" { arr.push(s.substring(last,i)); last = i+1 } i = i + 1 }
|
|
arr.push(s.substring(last)); return arr
|
|
}
|
|
_ltrim_chars(s, cs) {
|
|
local n = s.length(); local head = 0
|
|
local i = 0
|
|
while i < n {
|
|
local ch = s.substring(i,i+1)
|
|
if ch != " " && ch != "\t" { head = i; break }
|
|
if i == n-1 { head = n }
|
|
i = i + 1
|
|
}
|
|
return s.substring(head)
|
|
}
|
|
}
|
|
|
|
static box RuleIncludeForbiddenMain { method main(args) { return 0 } }
|