[JS IR] stdlib: Fix bugs in Long.toString(radix)

This commit is contained in:
Svyatoslav Kuzmich
2019-05-05 18:54:33 +03:00
parent bc29a5b15c
commit e3bcabeae3
6 changed files with 36 additions and 13 deletions
+1 -1
View File
@@ -259,5 +259,5 @@ public class Long internal constructor(
override fun hashCode(): Int = hashCode(this)
override fun toString(): String = toString(10)
override fun toString(): String = this.toStringImpl(radix = 10)
}