|
| 1 | +# C# Parser Coverage Report |
| 2 | + |
| 3 | +*Generated: 2025-10-02 21:49:28 UTC* |
| 4 | + |
| 5 | +## Summary |
| 6 | +- Nodes in file: 108 |
| 7 | +- Nodes handled by parser: 108 |
| 8 | +- Symbol kinds extracted: 7 |
| 9 | + |
| 10 | +## Coverage Table |
| 11 | + |
| 12 | +| Node Type | ID | Status | |
| 13 | +|-----------|-----|--------| |
| 14 | +| class_declaration | 231 | ✅ implemented | |
| 15 | +| interface_declaration | 236 | ✅ implemented | |
| 16 | +| struct_declaration | - | ❌ not found | |
| 17 | +| record_declaration | - | ❌ not found | |
| 18 | +| enum_declaration | 233 | ✅ implemented | |
| 19 | +| enum_member_declaration | 235 | ✅ implemented | |
| 20 | +| delegate_declaration | - | ❌ not found | |
| 21 | +| namespace_declaration | 228 | ✅ implemented | |
| 22 | +| file_scoped_namespace_declaration | - | ❌ not found | |
| 23 | +| method_declaration | 255 | ✅ implemented | |
| 24 | +| constructor_declaration | 253 | ✅ implemented | |
| 25 | +| destructor_declaration | - | ❌ not found | |
| 26 | +| property_declaration | 262 | ✅ implemented | |
| 27 | +| indexer_declaration | - | ❌ not found | |
| 28 | +| event_declaration | - | ❌ not found | |
| 29 | +| event_field_declaration | 257 | ✅ implemented | |
| 30 | +| field_declaration | 252 | ✅ implemented | |
| 31 | +| operator_declaration | - | ❌ not found | |
| 32 | +| conversion_operator_declaration | - | ❌ not found | |
| 33 | +| using_directive | 221 | ✅ implemented | |
| 34 | +| extern_alias_directive | - | ❌ not found | |
| 35 | +| modifier | 241 | ✅ implemented | |
| 36 | +| parameter | 265 | ✅ implemented | |
| 37 | +| type_parameter | 243 | ✅ implemented | |
| 38 | +| type_parameter_list | 242 | ✅ implemented | |
| 39 | +| base_list | 244 | ✅ implemented | |
| 40 | +| invocation_expression | 380 | ✅ implemented | |
| 41 | +| object_creation_expression | 396 | ✅ implemented | |
| 42 | +| member_access_expression | 394 | ✅ implemented | |
| 43 | +| variable_declaration | 274 | ✅ implemented | |
| 44 | +| variable_declarator | 276 | ✅ implemented | |
| 45 | +| local_declaration_statement | 330 | ✅ implemented | |
| 46 | + |
| 47 | +## Legend |
| 48 | + |
| 49 | +- ✅ **implemented**: Node type is recognized and handled by the parser |
| 50 | +- ⚠️ **gap**: Node type exists in the grammar but not handled by parser (needs implementation) |
| 51 | +- ❌ **not found**: Node type not present in the example file (may need better examples) |
| 52 | + |
| 53 | +## Recommended Actions |
| 54 | + |
| 55 | +### Priority 2: Missing Examples |
| 56 | +These nodes aren't in the comprehensive example. Consider: |
| 57 | + |
| 58 | +- `struct_declaration`: Add example to comprehensive.cs or verify node name |
| 59 | +- `record_declaration`: Add example to comprehensive.cs or verify node name |
| 60 | +- `delegate_declaration`: Add example to comprehensive.cs or verify node name |
| 61 | +- `file_scoped_namespace_declaration`: Add example to comprehensive.cs or verify node name |
| 62 | +- `destructor_declaration`: Add example to comprehensive.cs or verify node name |
| 63 | +- `indexer_declaration`: Add example to comprehensive.cs or verify node name |
| 64 | +- `event_declaration`: Add example to comprehensive.cs or verify node name |
| 65 | +- `operator_declaration`: Add example to comprehensive.cs or verify node name |
| 66 | +- `conversion_operator_declaration`: Add example to comprehensive.cs or verify node name |
| 67 | +- `extern_alias_directive`: Add example to comprehensive.cs or verify node name |
| 68 | + |
0 commit comments