Skip to content

Commit

Permalink
KE2: Remove some old debugging code
Browse files Browse the repository at this point in the history
  • Loading branch information
igfoo committed Nov 25, 2024
1 parent 86ddb3b commit 0b529c9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
4 changes: 0 additions & 4 deletions java/kotlin-extractor2/src/main/kotlin/entities/Expression.kt
Original file line number Diff line number Diff line change
Expand Up @@ -1974,10 +1974,6 @@ private fun KotlinFileExtractor.extractConstant(
KtNodeTypes.INTEGER_CONSTANT -> {
val t = e.expressionType
val i = parseNumericLiteral(text, elementType)
println("=== parsed")
println(text)
println(i)
println(i?.javaClass)
when {
i == null -> {
TODO()
Expand Down
3 changes: 0 additions & 3 deletions java/kotlin-extractor2/src/main/kotlin/entities/Function.kt
Original file line number Diff line number Diff line change
Expand Up @@ -722,9 +722,6 @@ private fun <T : DbCallable> KotlinUsesExtractor.useFunction(
classTypeArgsIncludingOuterClasses: List<IrTypeArgument>?
*/
): Label<out T> {
println("=== useFunction")
println(f)
println(f.returnType)
val label = getFunctionLabel(javaFun, parentId /* TODO , classTypeArgsIncludingOuterClasses */)
val id: Label<T> =
tw.getLabelFor(label) {
Expand Down

0 comments on commit 0b529c9

Please sign in to comment.