Separate library files which contain code and those which declarations only. Fixes builder test/

This commit is contained in:
Pavel V. Talanov
2012-07-02 16:29:10 +04:00
parent 96b6f0955e
commit 5004b2e01b
4 changed files with 51 additions and 11 deletions
+3 -1
View File
@@ -2,4 +2,6 @@ package kotlin
import java.util.Map as JMap
/** Provides [] access to maps */
public fun <K, V> JMap<K, V>.set(key : K, value : V): Unit = this.put(key, value)
public fun <K, V> JMap<K, V>.set(key : K, value : V): Unit {
this.put(key, value)
}