summaryrefslogtreecommitdiff
path: root/src/bind/LispBinding.kt
blob: 2a4c68879821b9d922e2e2ea2823dda8f2528fc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
package moe.nea.lisp.bind

@Retention(AnnotationRetention.RUNTIME)
@Target(AnnotationTarget.FIELD, AnnotationTarget.FUNCTION)
annotation class LispBinding(
    val name: String,
)

@Retention(AnnotationRetention.RUNTIME)
@Target(AnnotationTarget.VALUE_PARAMETER)
annotation class UnmapForeignObject