diff options
author | nea <nea@nea.moe> | 2023-08-22 12:39:32 +0200 |
---|---|---|
committer | nea <nea@nea.moe> | 2023-08-22 12:39:32 +0200 |
commit | 2904a9a9bd4f4ed7681ebd1c821401020a6118c7 (patch) | |
tree | 42911e665bb4e130824747e2e1e100b36f1a82b9 /src/bind/LispBinding.kt | |
parent | 39f1849edcaa9005814525cd13f76a5daaa15ae0 (diff) | |
download | nealisp-2904a9a9bd4f4ed7681ebd1c821401020a6118c7.tar.gz nealisp-2904a9a9bd4f4ed7681ebd1c821401020a6118c7.tar.bz2 nealisp-2904a9a9bd4f4ed7681ebd1c821401020a6118c7.zip |
Opaque foreign object mapping
Diffstat (limited to 'src/bind/LispBinding.kt')
-rw-r--r-- | src/bind/LispBinding.kt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/bind/LispBinding.kt b/src/bind/LispBinding.kt index 7af0e67..2a4c688 100644 --- a/src/bind/LispBinding.kt +++ b/src/bind/LispBinding.kt @@ -5,3 +5,7 @@ package moe.nea.lisp.bind annotation class LispBinding( val name: String, ) + +@Retention(AnnotationRetention.RUNTIME) +@Target(AnnotationTarget.VALUE_PARAMETER) +annotation class UnmapForeignObject |