mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-17 11:40:50 +07:00
24 lines
500 B
Java
24 lines
500 B
Java
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;
|
|
}
|
|
} |