jaroslav@106: /** jaroslav@106: * Back 2 Browser Bytecode Translator jaroslav@106: * Copyright (C) 2012 Jaroslav Tulach jaroslav@106: * jaroslav@106: * This program is free software: you can redistribute it and/or modify jaroslav@106: * it under the terms of the GNU General Public License as published by jaroslav@106: * the Free Software Foundation, version 2 of the License. jaroslav@106: * jaroslav@106: * This program is distributed in the hope that it will be useful, jaroslav@106: * but WITHOUT ANY WARRANTY; without even the implied warranty of jaroslav@106: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the jaroslav@106: * GNU General Public License for more details. jaroslav@106: * jaroslav@106: * You should have received a copy of the GNU General Public License jaroslav@106: * along with this program. Look for COPYING file in the top folder. jaroslav@106: * If not, see http://opensource.org/licenses/GPL-2.0. jaroslav@106: */ jaroslav@98: package org.apidesign.vm4brwsr; jaroslav@98: jaroslav@98: /** Checks if everything works OK, when we switch the jaroslav@98: * order of loaded classes. jaroslav@98: * jaroslav@98: * @author Jaroslav Tulach jaroslav@98: */ jaroslav@98: public class InstanceSubTest extends InstanceTest { jaroslav@98: jaroslav@98: @Override jaroslav@98: protected String startCompilationWith() { jaroslav@98: return "org/apidesign/vm4brwsr/InstanceSub"; jaroslav@98: } jaroslav@98: jaroslav@98: }