File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed
test/query-tests/diagnostics Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -11,13 +11,13 @@ import Stats
11
11
12
12
from string key , string value
13
13
where
14
- key = "Extracted files " and value = count ( File f | exists ( f .getRelativePath ( ) ) ) .toString ( )
14
+ key = "Files extracted " and value = count ( File f | exists ( f .getRelativePath ( ) ) ) .toString ( )
15
15
or
16
- key = "Extracted elements " and value = count ( Element e | not e instanceof Unextracted ) .toString ( )
16
+ key = "Elements extracted " and value = count ( Element e | not e instanceof Unextracted ) .toString ( )
17
17
or
18
- key = "Unextracted elements " and value = count ( Unextracted e ) .toString ( )
18
+ key = "Elements unextracted " and value = count ( Unextracted e ) .toString ( )
19
19
or
20
- key = "Lines of code" and value = getLinesOfCode ( ) .toString ( )
20
+ key = "Lines of code extracted " and value = getLinesOfCode ( ) .toString ( )
21
21
or
22
- key = "Lines of user code" and value = getLinesOfUserCode ( ) .toString ( )
22
+ key = "Lines of user code extracted " and value = getLinesOfUserCode ( ) .toString ( )
23
23
select key , value
Original file line number Diff line number Diff line change 1
- | Extracted elements | 61 |
2
- | Extracted files | 6 |
3
- | Lines of code | 24 |
4
- | Lines of user code | 24 |
5
- | Unextracted elements | 26 |
1
+ | Elements extracted | 61 |
2
+ | Elements unextracted | 26 |
3
+ | Files extracted | 6 |
4
+ | Lines of code extracted | 24 |
5
+ | Lines of user code extracted | 24 |
You can’t perform that action at this time.
0 commit comments