blob: 404d3ac15f8b49c40b325f9a89803cbdd4f07c02 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 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.internal.ui.text;
import static org.eclipse.dltk.javascript.internal.ui.text.JavascriptColorConstants.JS_DEPRECATED;
import org.eclipse.dltk.compiler.env.IModuleSource;
import org.eclipse.dltk.internal.javascript.ti.TypeInferencer2;
import org.eclipse.dltk.javascript.ast.Script;
import org.eclipse.dltk.javascript.parser.JavaScriptParserUtil;
import org.eclipse.dltk.ui.editor.highlighting.AbortSemanticHighlightingException;
import org.eclipse.dltk.ui.editor.highlighting.ISemanticHighlighter;
import org.eclipse.dltk.ui.editor.highlighting.ISemanticHighlightingRequestor;
@SuppressWarnings("restriction")
public class JavaScriptDeprecationHighlighter extends
AbstractJavaScriptHighlighter implements ISemanticHighlighter {
public String[] getHighlightingKeys() {
return new String[] { JS_DEPRECATED };
}
public void process(IModuleSource code,
ISemanticHighlightingRequestor requestor) {
if (!isSemanticHighlightingEnabled(JS_DEPRECATED)) {
return;
}
final Script script = JavaScriptParserUtil.parse(code, null);
if (script == null) {
throw new AbortSemanticHighlightingException();
}
final TypeInferencer2 inferencer = new TypeInferencer2();
inferencer.setModelElement(code.getModelElement());
final JavaScriptDeprecationHighlightVisitor visitor = new JavaScriptDeprecationHighlightVisitor(
inferencer, requestor);
inferencer.setVisitor(visitor);
inferencer.doInferencing(script);
}
}