rt/vm/src/test/java/org/apidesign/vm4brwsr/LibUse.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 10 Jun 2016 05:52:44 +0200
branchLibraries
changeset 1971 de609e0cdab5
parent 1970 958a3b7fad36
child 1972 a83ae75ebf89
permissions -rw-r--r--
Make sure Boolean.prototype contains the Java methods soon enough
     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.NaN;
    21 import static net.java.html.lib.Exports.eval;
    22 import static net.java.html.lib.Exports.isNaN;
    23 import static net.java.html.lib.Exports.parseInt;
    24 import net.java.html.lib.Objs;
    25 
    26 public class LibUse {
    27     public static int fourtyTwo() {
    28         Number n = (Number) eval("6 * 7");
    29         return n.intValue();
    30     }
    31 
    32     public static String hiProperty(String set) {
    33         final Object obj = eval("var x = {}; x.x = 'Hi'; x");
    34         if (obj == null) {
    35             throw new IllegalStateException("Some Value returned " + obj);
    36         }
    37         if (!(obj instanceof Objs)) {
    38             throw new IllegalStateException("The result is Objs: " + obj.getClass());
    39         }
    40         Objs js = (Objs) obj;
    41         if (set != null) {
    42             js.$set("x", set);
    43         }
    44         return (String) js.$get("x");
    45     }
    46 
    47     public static double parse(String str) throws Exception {
    48         return parseInt(str);
    49     }
    50 
    51     public static double parse(String str, int radix) throws Exception {
    52         return parseInt(str, radix);
    53     }
    54 
    55     public boolean checkNaN() throws Exception {
    56         double nan = NaN;
    57         return isNaN(nan);
    58     }
    59 
    60 }