• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3  */
4 
5 @file:Suppress("UnstableApiUsage")
6 
7 import org.gradle.api.provider.*
8 
bynull9 infix fun <T> Property<T>.by(value: T) {
10     set(value)
11 }
12