Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,30 @@ func main() {
}
```

## Codebase Size

~14,700 lines of code (excluding the vendored `kroc/` subtree).

| Category | Lines |
|----------|------:|
| Production code | 6,400 |
| Tests | 8,160 |
| Occam examples | 135 |
| **Total** | **~14,700** |

Largest files:

| File | Lines |
|------|------:|
| `parser/parser_test.go` | 3,124 |
| `parser/parser.go` | 2,811 |
| `codegen/codegen.go` | 2,617 |
| `codegen/codegen_test.go` | 669 |
| `ast/ast.go` | 520 |
| `lexer/lexer.go` | 448 |
| `preproc/preproc_test.go` | 437 |
| E2E test files (5 files) | 1,545 |

## Implemented Features

See [TODO.md](TODO.md) for the full implementation status and roadmap.
Expand Down
Loading