Conversation
- infrastructure/parser/c.rs: #include パース、Symbol/Variable/Comment 抽出(ParsedNames 対応) - infrastructure/resolver/c.rs: "..." → Internal, <stdlib> → Stdlib, <other> → External - DispatchingParser / DispatchingResolver に .c/.h 拡張子を登録 - SOURCE_EXTENSIONS に c, h を追加 - ext_to_language に c/h を追加(mille init 対応) - violation_detector に C の external crate_name 抽出(/ 区切り)を追加 - E2E テスト 9 ケース全通過(valid, dep opt-in/out, naming) - CI dogfooding ステップ追加(ci.yml) - CLAUDE.md / .claude/rules/new-language.md に言語追加チェックリスト追加 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- README.md: フィーチャーマトリックスに C 列追加、C 設定例追加 - docs/TODO.md: C 言語サポート完了を記載 - website: C 言語ガイド(ja + en)、index.mdx サポート表更新、sidebar 追加 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
.c/.h)のアーキテクチャチェック対応を追加ParsedNames構造体ガード(PR feat: ParsedNames 構造体によるコンパイルタイムガード #68)の実効性を確認 — 新言語追加時にsymbols,variables,commentsの3フィールドすべてを明示的に構築する必要がある.claude/rules/new-language.mdに言語追加チェックリストを追加(CI dogfooding 忘れ防止)変更内容
Parser (
infrastructure/parser/c.rs)#include "..."/#include <...>の tree-sitter パースResolver (
infrastructure/resolver/c.rs)#include "..."→ Internal(相対パス正規化あり)#include <stdio.h>等 → Stdlib(C 標準 + POSIX ヘッダリスト)#include <curl/curl.h>等 → Externalその他
.c/.h登録SOURCE_EXTENSIONSにc,h追加ext_to_languageにc/h追加(mille init対応)violation_detectorに C の external crate_name 抽出(/区切り)追加ドキュメント
Test plan
tests/fixtures/c_sampleのmille checkステップ追加🤖 Generated with Claude Code