1 /*
2  * Copyright (C) 2024 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 package com.android.tools.metalava.model.type
18 
19 import com.android.tools.metalava.model.ClassTypeItem
20 import com.android.tools.metalava.model.Codebase
21 import com.android.tools.metalava.model.LambdaTypeItem
22 import com.android.tools.metalava.model.TypeArgumentTypeItem
23 import com.android.tools.metalava.model.TypeItem
24 import com.android.tools.metalava.model.TypeModifiers
25 
26 class DefaultLambdaTypeItem(
27     codebase: Codebase,
28     modifiers: TypeModifiers,
29     qualifiedName: String,
30     arguments: List<TypeArgumentTypeItem>,
31     outerClassType: ClassTypeItem?,
32     override val isSuspend: Boolean,
33     override val receiverType: TypeItem?,
34     override val parameterTypes: List<TypeItem>,
35     override val returnType: TypeItem,
36 ) :
37     DefaultClassTypeItem(
38         codebase = codebase,
39         modifiers = modifiers,
40         qualifiedName = qualifiedName,
41         arguments = arguments,
42         outerClassType = outerClassType,
43     ),
44     LambdaTypeItem {
45 
46     @Deprecated(
47         "implementation detail of this class",
48         replaceWith = ReplaceWith("substitute(modifiers, outerClassType, arguments)"),
49     )
duplicatenull50     override fun duplicate(
51         modifiers: TypeModifiers,
52         outerClassType: ClassTypeItem?,
53         arguments: List<TypeArgumentTypeItem>
54     ): LambdaTypeItem {
55         return DefaultLambdaTypeItem(
56             codebase = codebase,
57             qualifiedName = qualifiedName,
58             arguments = arguments,
59             outerClassType = outerClassType,
60             modifiers = modifiers,
61             isSuspend = isSuspend,
62             receiverType = receiverType,
63             parameterTypes = parameterTypes,
64             returnType = returnType,
65         )
66     }
67 }
68