Temporary drop mapNotNull and mapNotNullTo.

Disable mapNotNull tests

#KT-4410
This commit is contained in:
Ilya Gorbunov
2015-10-30 17:14:04 +03:00
parent b71fec985f
commit 65a98d6968
6 changed files with 8 additions and 66 deletions
@@ -71,6 +71,7 @@ fun mapping(): List<GenericFunction> {
include(Maps)
}
/*
templates add f("mapNotNull(transform: (T) -> R)") {
inline(true)
exclude(Strings, ArraysOfPrimitives)
@@ -95,6 +96,7 @@ fun mapping(): List<GenericFunction> {
"""
}
}
*/
templates add f("mapTo(destination: C, transform: (T) -> R)") {
inline(true)
@@ -143,6 +145,7 @@ fun mapping(): List<GenericFunction> {
include(Maps)
}
/*
templates add f("mapNotNullTo(destination: C, transform: (T) -> R)") {
inline(true)
exclude(Strings, ArraysOfPrimitives)
@@ -170,6 +173,7 @@ fun mapping(): List<GenericFunction> {
"""
}
}
*/
templates add f("flatMap(transform: (T) -> Iterable<R>)") {
inline(true)