Commit f1d3564
Add full semantic parsing support for Kotlin
- Implement KotlinSemanticParser with regex-based parsing
- Support for all major Kotlin constructs:
- Classes (regular, data, sealed, enum, inner, value/inline)
- Interfaces and objects (including companion objects)
- Functions and methods (including suspend/coroutines)
- Extension functions
- Properties with custom accessors
- Annotations and modifiers
- Add support for .kts (Kotlin script) files
- Comprehensive test coverage with 18 unit tests
- Integration and E2E tests for Kotlin semantic search
- Update documentation to include Kotlin support
- Bump version to 2.1.0.0
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>1 parent c6ffd19 commit f1d3564
File tree
10 files changed
+1611
-2
lines changed- src/code_indexer
- indexing
- services
- tests
10 files changed
+1611
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
11 | | - | |
| 11 | + | |
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
3 | 20 | | |
4 | 21 | | |
5 | 22 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
8 | | - | |
| 8 | + | |
9 | 9 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
212 | 212 | | |
213 | 213 | | |
214 | 214 | | |
| 215 | + | |
215 | 216 | | |
216 | 217 | | |
217 | 218 | | |
| |||
0 commit comments