JS backend: remove $createClass and $new usages

In RangeForTranslator replace get_something() -> something
This commit is contained in:
Erokhin Stanislav
2013-08-29 22:21:37 +04:00
parent 0fbce55df7
commit 6400946fc6
7 changed files with 309 additions and 397 deletions
@@ -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;