blob: 3ca5796b8b128bc8931b3c2671e7aa73d331eeb1 [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.typeinfo;
import org.eclipse.dltk.annotations.NonNull;
import org.eclipse.dltk.javascript.typeinfo.model.TypeVariable;
/**
* Representation for the class of type variable.
*/
public class RClassVariable extends RType {
@NonNull
private final TypeVariable variable;
public RClassVariable(TypeVariable variable) {
this.variable = variable;
}
public String getName() {
return JSDocTypeParser.CLASS + "<" + variable.getName() + ">";
}
public TypeVariable getVariable() {
return variable;
}
@Override
public TypeCompatibility isAssignableFrom(IRType type) {
if (super.isAssignableFrom(type).ok()) {
return TypeCompatibility.TRUE;
} else if (type instanceof IRClassType) {
return TypeCompatibility.TRUE;
} else {
return TypeCompatibility.FALSE;
}
}
@Override
public boolean isSynthetic() {
return true;
}
@Override
public int hashCode() {
return variable.hashCode();
}
@Override
public boolean equals(Object obj) {
if (obj instanceof RClassVariable) {
final RClassVariable other = (RClassVariable) obj;
return variable == other.variable;
}
return false;
}
}