blob: 066502fbbde1df0b6083512cf13e01b5278ae15d [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.ast.Expression;
import org.eclipse.dltk.javascript.ast.FunctionStatement;
import org.eclipse.dltk.javascript.ast.INodeVisitor;
import org.eclipse.dltk.javascript.typeinfo.IModelBuilder.IMethod;
import org.eclipse.dltk.javascript.typeinfo.model.JSType;
public interface IMatchLocatorVisitor extends INodeVisitor<IMatchLocatorValue> {
void acceptTypeReference(ASTNode node, String typeName);
void acceptTypeReference(ASTNode node, JSType type);
void addFieldDeclaration(Expression identifier, JSType type);
void addFunctionDeclaration(Expression identifier,
FunctionStatement function, IMethod method);
void visitFunctionBody(FunctionStatement function);
}