Change package of extensions and other top-level declarations from kotlin.js to kotlin to match corresponding ones in stdlib for JVM.

This commit is contained in:
Ilya Gorbunov
2015-04-14 21:31:25 +03:00
parent 908864b0c0
commit ae13359adc
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -14,7 +14,7 @@
* limitations under the License.
*/
package kotlin.js
package kotlin
// actually \s is enough to match all whitespace, but \xA0 added because of different regexp behavior of Rhino used in Selenium tests
public fun Char.isWhitespace(): Boolean = toString().matches("[\\s\\xA0]")
+1 -1
View File
@@ -1,4 +1,4 @@
package kotlin.js
package kotlin
import kotlin.text.js.RegExp
+1 -1
View File
@@ -1,4 +1,4 @@
package kotlin.js
package kotlin
import kotlin.text.Regex
import kotlin.text.js.RegExp