mirror of
https://github.com/mamoe/mirai.git
synced 2025-01-11 11:00:15 +08:00
Make CommandArgumentContext not inline
This commit is contained in:
parent
408589b615
commit
259d0f90d5
@ -160,7 +160,7 @@ public class SimpleCommandArgumentContext(
|
|||||||
*/
|
*/
|
||||||
@Suppress("FunctionName")
|
@Suppress("FunctionName")
|
||||||
@JvmSynthetic
|
@JvmSynthetic
|
||||||
public inline fun CommandArgumentContext(block: CommandArgumentContextBuilder.() -> Unit): CommandArgumentContext {
|
public fun CommandArgumentContext(block: CommandArgumentContextBuilder.() -> Unit): CommandArgumentContext {
|
||||||
return SimpleCommandArgumentContext(CommandArgumentContextBuilder().apply(block).distinctByReversed { it.klass })
|
return SimpleCommandArgumentContext(CommandArgumentContextBuilder().apply(block).distinctByReversed { it.klass })
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -214,8 +214,6 @@ public class CommandArgumentContextBuilder : MutableList<ParserPair<*>> by mutab
|
|||||||
): ParserPair<*> = T::class with CommandArgumentParser(parser)
|
): ParserPair<*> = T::class with CommandArgumentParser(parser)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@PublishedApi
|
|
||||||
internal inline fun <T, K> List<T>.distinctByReversed(selector: (T) -> K): List<T> {
|
internal inline fun <T, K> List<T>.distinctByReversed(selector: (T) -> K): List<T> {
|
||||||
val set = HashSet<K>()
|
val set = HashSet<K>()
|
||||||
val list = ArrayList<T>()
|
val list = ArrayList<T>()
|
||||||
|
Loading…
Reference in New Issue
Block a user