Rust: Add extracted files to summary stats.

This commit is contained in:
Geoffrey White
2024-09-17 17:36:43 +01:00
parent 27dca746ea
commit 6ebc615fd4
2 changed files with 3 additions and 0 deletions

View File

@@ -11,6 +11,8 @@ import Stats
from string key, string value
where
key = "Extracted files" and value = count(File f | exists(f.getRelativePath())).toString()
or
key = "Lines of code" and value = getLinesOfCode().toString()
or
key = "Lines of user code" and value = getLinesOfUserCode().toString()

View File

@@ -1,2 +1,3 @@
| Extracted files | 6 |
| Lines of code | 24 |
| Lines of user code | 24 |