Skip to content

Instantly share code, notes, and snippets.

@johnsonlee
Last active December 9, 2022 10:58
Show Gist options
  • Select an option

  • Save johnsonlee/03ffda38438fbee4669eeee7c8ed1489 to your computer and use it in GitHub Desktop.

Select an option

Save johnsonlee/03ffda38438fbee4669eeee7c8ed1489 to your computer and use it in GitHub Desktop.
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