You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
2.0 KiB
58 lines
2.0 KiB
DEFINE-CHECKER TEST_REFERENCE = {
|
|
SET report_when =
|
|
WHEN method_return_type("instancetype")
|
|
AND HOLDS-NEXT WITH-TRANSITION Parameters
|
|
(has_type("MyClass") OR has_type("MyClass &"))
|
|
AND declaration_has_name(REGEXP("^new.*:$"))
|
|
HOLDS-IN-NODE ObjCMethodDecl;
|
|
SET message = "Found reference in parameter of method new";
|
|
};
|
|
|
|
DEFINE-CHECKER TEST_PARAMETER_LABEL = {
|
|
LET method_has_parameter_type =
|
|
WHEN
|
|
HOLDS-NEXT WITH-TRANSITION ParameterName "number"
|
|
(has_type("int"))
|
|
HOLDS-IN-NODE ObjCMessageExpr;
|
|
SET report_when =
|
|
WHEN
|
|
method_has_parameter_type
|
|
AND call_method(REGEXP("^new.*:$"))
|
|
HOLDS-IN-NODE ObjCMessageExpr;
|
|
SET message = "Found method with parameter labeled with `number` and with type `int`";
|
|
};
|
|
|
|
DEFINE-CHECKER TEST_PARAMETER_LABEL_REGEXP = {
|
|
LET method_has_parameter_type =
|
|
WHEN
|
|
HOLDS-NEXT WITH-TRANSITION ParameterName REGEXP("num.*")
|
|
(has_type("int"))
|
|
HOLDS-IN-NODE ObjCMessageExpr;
|
|
SET report_when =
|
|
WHEN
|
|
method_has_parameter_type
|
|
AND call_method(REGEXP("^new.*:$"))
|
|
HOLDS-IN-NODE ObjCMessageExpr;
|
|
SET message = "Found method with parameter labeled with `number` and with type `int`";
|
|
};
|
|
|
|
DEFINE-CHECKER TEST_PARAMETER_LABEL_EMPTY_STRUCT = {
|
|
LET is_empty_init_list =
|
|
WHEN ((is_node("ImplicitValueInitExpr")) HOLDS-EVERYWHERE-NEXT)
|
|
HOLDS-IN-NODE InitListExpr;
|
|
LET is_empty_struct =
|
|
WHEN ((is_empty_init_list) HOLDS-EVERYWHERE-NEXT)
|
|
HOLDS-IN-NODE CXXBindTemporaryExpr;
|
|
LET method_has_parameter_type =
|
|
WHEN
|
|
HOLDS-NEXT WITH-TRANSITION ParameterName "newWithStruct"
|
|
(is_empty_struct)
|
|
HOLDS-IN-NODE ObjCMessageExpr;
|
|
SET report_when =
|
|
WHEN
|
|
method_has_parameter_type
|
|
AND call_method(REGEXP("^new.*:$"))
|
|
HOLDS-IN-NODE ObjCMessageExpr;
|
|
SET message = "Do not pass empty struct to the parameter `newWithStruct` of method `new...`";
|
|
};
|