spxbhuhb / adaptive

Consolidated full-stack application development library for Kotlin
https://adaptive.fun
Apache License 2.0
3 stars 0 forks source link

Convert the Delegated annotation into AdaptiveExpect #14

Closed toth-istvan-zoltan closed 4 months ago

toth-istvan-zoltan commented 4 months ago

The duplicated annotations are quite ugly and unnecessary:

@Adaptive
@Delegated
fun someFun() {
}

Convert this into:

@AdaptiveExpect
fun someFun() {
}