rt/vm/src/test/java/org/apidesign/vm4brwsr/Exceptions.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 26 Feb 2013 16:54:16 +0100
changeset 772 d382dacfd73f
parent 423 vm/src/test/java/org/apidesign/vm4brwsr/Exceptions.java@9b5868bf56ec
child 1787 ea12a3bb4b33
permissions -rw-r--r--
Moving modules around so the runtime is under one master pom and can be built without building other modules that are in the repository
     1 /**
     2  * Back 2 Browser Bytecode Translator
     3  * Copyright (C) 2012 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 org.apidesign.bck2brwsr.core.JavaScriptBody;
    21 
    22 /**
    23  *
    24  * @author tom
    25  */
    26 public class Exceptions {
    27     private Exceptions() {
    28     }
    29 
    30     public static int methodWithTryCatchNoThrow() {
    31         int res = 0;
    32         try {
    33             res = 1;
    34         } catch (IllegalArgumentException e) {
    35             res = 2;
    36         }
    37         //join point
    38         return res;
    39     }
    40 
    41     public static int methodWithTryCatchThrow() {
    42         int res = 0;
    43         try {
    44             res = 1;
    45             throw new IllegalArgumentException();
    46         } catch (IllegalArgumentException e) {
    47             res = 2;
    48         }
    49         //join point
    50         return res;
    51     }
    52     
    53     @JavaScriptBody(args = "msg", body = "throw msg;")
    54     public static void thrw(String msg) {}
    55     
    56     public static String catchThrowableCatchesAll() {
    57         try {
    58             thrw("Hello!");
    59             return "Not here!";
    60         } catch (Throwable ex) {
    61             return ex.getMessage();
    62         }
    63     }
    64 
    65     public static String newInstance(String n) {
    66         try {
    67             Class c;
    68             try {
    69                 c = Class.forName(n);
    70             } catch (ClassNotFoundException ex) {
    71                 return ("CNFE:" + ex.getMessage()).toString();
    72             }
    73             return c.newInstance().getClass().getName();
    74         } catch (InstantiationException | IllegalAccessException ex) {
    75             return ex.getMessage();
    76         }
    77     }
    78     
    79     private static int counter;
    80     public static int readCounter(String n) throws ClassNotFoundException {
    81         try {
    82             Class.forName(n);
    83         } finally {
    84             counter++;
    85         }
    86         return counter;
    87     }
    88 }