-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: service instantiation uses proper type logic
- Loading branch information
1 parent
d9d5585
commit 11ca26d
Showing
4 changed files
with
42 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
package sh.illumi.kraft.util | ||
|
||
import kotlin.reflect.KParameter | ||
import kotlin.reflect.full.createType | ||
import kotlin.reflect.full.isSubtypeOf | ||
|
||
fun argsMatchParams(args: Array<out Any>, params: Array<out KParameter>) = | ||
if (args.size != params.size) false | ||
else args.zip(params).all { (arg, param) -> param.type.classifier == arg::class } | ||
else args.zip(params).all { (arg, param) -> | ||
arg::class.createType().isSubtypeOf(param.type) | ||
} |