blob: a0968ee699b194277a2fd8b73a13241dc9cb2812 [file] [log] [blame]
/*
* Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
@file:Suppress("UnstableApiUsage")
import org.gradle.api.provider.*
infix fun <T> Property<T>.by(value: T) {
set(value)
}