mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
Fix bad rebase
This commit is contained in:
committed by
Ian Lynagh
parent
b4138838fe
commit
380da465b9
@@ -548,7 +548,7 @@ open class KotlinUsesExtractor(
|
||||
val javaResult = TypeResult(id, javaSignature)
|
||||
// Note the stripping of any type projection from `componentType` here mirrors the action of `IrType.getArrayElementType`,
|
||||
// and is required if we are not to produce different kotlin types for the same Java type (e.g. List[] -> Array<out List> or Array<List>)
|
||||
val owner: IrClass = s.classifier.owner as IrClass
|
||||
val owner: IrClass = arrayType.classifier.owner as IrClass
|
||||
val kotlinClassName = getUnquotedClassLabel(owner, listOf(makeTypeProjection(componentType, Variance.INVARIANT)))
|
||||
val kotlinSignature = "$javaSignature?" // TODO: Wrong
|
||||
val kotlinLabel = "@\"kt_type;nullable;${kotlinClassName}\""
|
||||
|
||||
Reference in New Issue
Block a user