case NotEq:
}
}
public static void checkBinaryExpression(InspectionResult result, GoBinaryExpression expression) {
GoExpr left = expression.getLeftOperand();
GoExpr right = expression.getRightOperand();
if (left == null || right == null) {
return;
}
if (left.isConstantExpression() || right.isConstantExpression()){
return;
}
GoType[] leftTypes = left.getType();
GoType[] rightTypes = right.getType();
if (leftTypes.length == 0 || rightTypes.length == 0){
return;
}
String operator = expression.op().toString();