blob: 3210638cebd83ee4186da54cfff96bed39ce79c3 [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.parser;
public enum SymbolKind {
PARAM(JavaScriptParserProblems.DUPLICATE_PARAMETER, null),
VAR(JavaScriptParserProblems.DUPLICATE_VAR,
JavaScriptParserProblems.VAR_DUPLICATES_OTHER),
CONST(JavaScriptParserProblems.DUPLICATE_CONST,
JavaScriptParserProblems.CONST_DUPLICATES_OTHER),
FUNCTION(JavaScriptParserProblems.DUPLICATE_FUNCTION,
JavaScriptParserProblems.FUNCTION_DUPLICATES_OTHER);
final JSProblemIdentifier duplicateProblem;
final JSProblemIdentifier hideProblem;
SymbolKind(JSProblemIdentifier duplicateProblem,
JSProblemIdentifier hideProblem) {
this.duplicateProblem = duplicateProblem;
this.hideProblem = hideProblem;
}
public String verboseName() {
return name().toLowerCase();
}
}