blob: 5a71e43f2c5ddd9ae5e21801a45e4d112c2108a2 [file] [log] [blame]
import org.jetbrains.annotations.NotNull;
interface JSType {
}
class JSTypeofTypeImpl implements JSType {
static final JSType NO_TYPE = new JSType() {
};
private JSType myEvaluatedType;
private void evaluateType() {
JSType exprType = JSResolveUtil.getExpressionJSType();
if (exprType instanceof JSTypeofTypeImpl) {
}
myEvaluatedType = NO_TYPE;
}
}
class JSResolveUtil {
@NotNull
public static JSType getExpressionJSType() {
return JSTypeofTypeImpl.NO_TYPE;
}
}