/****************************************************************************** * Copyright (c) 2002 - 2006 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *****************************************************************************/ package com.ibm.wala.cast.js.loader; import com.ibm.wala.cast.js.translator.JavaScriptTranslatorFactory; import com.ibm.wala.cast.js.types.JavaScriptTypes; import com.ibm.wala.cast.loader.SingleClassLoaderFactory; import com.ibm.wala.cast.tree.rewrite.CAstRewriterFactory; import com.ibm.wala.classLoader.IClassLoader; import com.ibm.wala.ipa.cha.IClassHierarchy; import com.ibm.wala.types.ClassLoaderReference; /** * Creates the single {@link IClassLoader class loader} used for JavaScript. */ public class JavaScriptLoaderFactory extends SingleClassLoaderFactory { protected final JavaScriptTranslatorFactory translatorFactory; protected final CAstRewriterFactory preprocessor; public JavaScriptLoaderFactory(JavaScriptTranslatorFactory factory) { this(factory, null); } public JavaScriptLoaderFactory(JavaScriptTranslatorFactory factory, CAstRewriterFactory preprocessor) { this.translatorFactory = factory; this.preprocessor = preprocessor; } @Override protected IClassLoader makeTheLoader(IClassHierarchy cha) { return new JavaScriptLoader( cha, translatorFactory, preprocessor ); } @Override public ClassLoaderReference getTheReference() { return JavaScriptTypes.jsLoader; } }