Created
December 9, 2022 10:59
-
-
Save johnsonlee/e497a275b7faaaffaf290c5a90dab739 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @SinceKotlin(version = "1.4") | |
| private final Class owner; | |
| @SinceKotlin(version = "1.4") | |
| private final String name; | |
| @SinceKotlin(version = "1.4") | |
| private final String signature; | |
| @SinceKotlin(version = "1.4") | |
| private final boolean isTopLevel; | |
| @SinceKotlin(version = "1.4") | |
| protected CallableReference( | |
| Object receiver, | |
| Class owner, | |
| String name, | |
| String signature, | |
| boolean isTopLevel | |
| ) { | |
| this.receiver = receiver; | |
| this.owner = owner; | |
| this.name = name; | |
| this.signature = signature; | |
| this.isTopLevel = isTopLevel; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment