blob: c43b6ccb74f95cd0206e0579ab4bb0de39c664d2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2007 IBM Corporation and others.
* 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
*
*******************************************************************************/
package org.eclipse.dltk.javascript.internal.ui.search;
import org.eclipse.dltk.core.IDLTKLanguageToolkit;
import org.eclipse.dltk.javascript.core.JavaScriptLanguageToolkit;
import org.eclipse.dltk.ui.search.ScriptSearchPage;
public class JavaScriptSearchPage extends ScriptSearchPage {
protected IDLTKLanguageToolkit getLanguageToolkit() {
return JavaScriptLanguageToolkit.getDefault();
}
}