JS backend: remove $createClass and $new usages
In RangeForTranslator replace get_something() -> something
This commit is contained in:
@@ -14,10 +14,10 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
var map = Kotlin.$new(Kotlin.HashMap)()
|
||||
var map = new Kotlin.HashMap();
|
||||
|
||||
map.put(3, 4)
|
||||
map.put(6, 3)
|
||||
map.put(3, 4);
|
||||
map.put(6, 3);
|
||||
|
||||
function test() {
|
||||
if (map.containsKey(4) || map.containsKey(5)) return false;
|
||||
|
||||
Reference in New Issue
Block a user