File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ | Number of files with extension jar | 1 |
2+ | Number of files with extension kt | 1 |
3+ | Number of lines of code | 2 |
4+ | Number of lines of code with extension kt | 2 |
5+ | Total number of lines | 3 |
6+ | Total number of lines with extension kt | 3 |
7+ | Uses Kotlin 2: false | 1 |
Original file line number Diff line number Diff line change 1+ extensions :
2+ - addsTo :
3+ pack : codeql/java-queries
4+ extensible : extractorInformationSkipKey
5+ data :
6+ # These will have unstable values, as they are dependent on the
7+ # JDK that the test is run with, so filter them out:
8+ - ["Number of files"]
9+ - ["Number of files with extension class"]
10+ # These depend on the Kotlin version you have installed
11+ - ["Kotlin Compiler Version : %"]
12+ - ["Kotlin Extractor Name : %"]
13+
Original file line number Diff line number Diff line change 1+ Telemetry/ExtractorInformation.ql
Original file line number Diff line number Diff line change 1+ class SomeClass {
2+ }
Original file line number Diff line number Diff line change 1+ from create_database_utils import *
2+
3+ run_codeql_database_create (["kotlinc SomeClass.kt" ], lang = "java" )
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ predicate extractorTotalDiagnostics(string key, int value) {
8787
8888from string key , int value
8989where
90- not extractorInformationSkipKey ( key ) and
90+ not exists ( string pattern | extractorInformationSkipKey ( pattern ) and key . matches ( pattern ) ) and
9191 (
9292 compilationInfo ( key , value ) or
9393 fileCount ( key , value ) or
You can’t perform that action at this time.
0 commit comments