[FIR] Properly implement FirFunctionCall.hasExplicitValueArguments
This commit is contained in:
committed by
Space Team
parent
2f63c6e1bd
commit
02c08a4673
+1
-1
@@ -38,7 +38,7 @@ sealed class DoubleColonLHS(val type: ConeKotlinType) {
|
||||
|
||||
// Returns true if this expression has the form "A<B>" which means it's a type on the LHS of a double colon expression
|
||||
internal val FirFunctionCall.hasExplicitValueArguments: Boolean
|
||||
get() = true // TODO: hasExplicitArgumentList || hasExplicitLambdaArguments
|
||||
get() = arguments.isNotEmpty()
|
||||
|
||||
class FirDoubleColonExpressionResolver(private val session: FirSession) {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user