Last active
December 9, 2022 10:58
-
-
Save johnsonlee/03ffda38438fbee4669eeee7c8ed1489 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
| public FunctionReferenceImpl( | |
| int arity, | |
| KDeclarationContainer owner, | |
| String name, | |
| String signature | |
| ) { | |
| super(/* ... */); | |
| } | |
| @SinceKotlin(version = "1.4") | |
| public FunctionReferenceImpl( | |
| int arity, | |
| Class owner, | |
| String name, | |
| String signature, | |
| int flags | |
| ) { | |
| super(/* ... */); | |
| } | |
| @SinceKotlin(version = "1.4") | |
| public FunctionReferenceImpl( | |
| int arity, | |
| Object receiver, | |
| Class owner, | |
| String name, | |
| String signature, | |
| int flags | |
| ) { | |
| super(/* ... */); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment