blob: 0cf953b8ccc479d60a09fbcbc7af77bf306b8256 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 NumberFour AG
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* NumberFour AG - initial API and Implementation (Alex Panchenko)
*******************************************************************************/
package org.eclipse.dltk.javascript.search;
import org.eclipse.dltk.ast.ASTNode;
import org.eclipse.dltk.javascript.internal.search.JavaScriptMatchLocator;
import org.eclipse.dltk.javascript.typeinfo.ITypeInferenceExtensionFactory;
/**
* Handler which can be used as plugin for {@link JavaScriptMatchLocator}, it is
* created by {@link ITypeInferenceExtensionFactory}.
*/
public interface IMatchLocatorHandler {
/**
* The special value to return if next handler should be called
*/
public static final IMatchLocatorValue CONTINUE = new IMatchLocatorValue() {
};
IMatchLocatorValue handle(ASTNode node);
}