Files
strangepleasures 9688c3e761 [KAPT] Improve stub formatting; check raw stubs in tests
Merge-request: KT-MR-14244
Merged-by: Pavel Mikhailovskii <Pavel.Mikhailovskii@jetbrains.com>
2024-02-09 15:41:37 +00:00

47 lines
957 B
Plaintext
Vendored

package a;
/**
* public final annotation class a/LinkifyMask : kotlin/Annotation {
*
* // signature: <init>()V
* public constructor()
*
* // module name: main
* }
*/
@kotlin.Metadata()
@b.RestrictTo(value = {b.RestrictTo.Scope.LIBRARY_GROUP_PREFIX})
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
public abstract @interface LinkifyMask {
}
////////////////////
package a;
/**
* public final object a/SphinxLinkify : kotlin/Any {
*
* // signature: <init>()V
* private constructor()
*
* // signature: addLinks(I)V
* private final fun addLinks(mask: kotlin/Int): kotlin/Unit
*
* // module name: main
* }
*/
@kotlin.Metadata()
public final class SphinxLinkify {
@org.jetbrains.annotations.NotNull()
public static final a.SphinxLinkify INSTANCE = null;
private SphinxLinkify() {
super();
}
private final void addLinks(@LinkifyMask() int mask) {
}
}