rt/vm/src/test/java/org/apidesign/vm4brwsr/LibUse.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 08 Jun 2016 07:15:54 +0200
branchLibraries
changeset 1970 958a3b7fad36
parent 1968 61a5c529136c
child 1971 de609e0cdab5
permissions -rw-r--r--
Overloaded methods can be invoked OK
     1 /**
     2  * Back 2 Browser Bytecode Translator
     3  * Copyright (C) 2012-2015 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, version 2 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful,
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    12  * GNU General Public License for more details.
    13  *
    14  * You should have received a copy of the GNU General Public License
    15  * along with this program. Look for COPYING file in the top folder.
    16  * If not, see http://opensource.org/licenses/GPL-2.0.
    17  */
    18 package org.apidesign.vm4brwsr;
    19 
    20 import static net.java.html.lib.Exports.eval;
    21 import static net.java.html.lib.Exports.parseInt;
    22 import net.java.html.lib.Objs;
    23 
    24 public class LibUse {
    25     public static int fourtyTwo() {
    26         Number n = (Number) eval("6 * 7");
    27         return n.intValue();
    28     }
    29 
    30     public static String hiProperty(String set) {
    31         final Object obj = eval("var x = {}; x.x = 'Hi'; x");
    32         if (obj == null) {
    33             throw new IllegalStateException("Some Value returned " + obj);
    34         }
    35         if (!(obj instanceof Objs)) {
    36             throw new IllegalStateException("The result is Objs: " + obj.getClass());
    37         }
    38         Objs js = (Objs) obj;
    39         if (set != null) {
    40             js.$set("x", set);
    41         }
    42         return (String) js.$get("x");
    43     }
    44 
    45     public static double parse(String str) throws Exception {
    46         return parseInt(str);
    47     }
    48 
    49     public static double parse(String str, int radix) throws Exception {
    50         return parseInt(str, radix);
    51     }
    52 
    53 }