我可以在 Intellij 结构搜索中使用过滤器来引用变量计数吗?
Can I use filters in Intellij structural search to reference variable counts?
我正在尝试使用结构搜索在 IntelliJ 中创建自定义检查。这个想法是找到所有具有一个或多个参数的方法,其中至少有一个没有注释。奖励:只命中非原始类型的参数。
到目前为止,我已经创建了以下搜索模板:
$MethodType$ $Method$(@$ParamAnnotation$ $ParameterType$ $Parameter$);
使用这些过滤器和搜索目标 "complete match":
$Parameters$: count[1,∞]
$ParamAnnotation$: count[0,0]
但是,这只会命中没有任何参数注释的方法。我希望它也匹配只有一些参数有注释而其他参数没有的方法。
是否可以在另一个过滤器中引用一个变量的计数,例如通过使用脚本过滤器?如果可以,怎么做?
您可以像这样创建一个搜索模板来做到这一点:
$MethodType$ $Method$($TypeBefore$ $before$,
@$ParamAnnotation$ $ParameterType$ $Parameter$,
$TypeAfter$ $after$);
过滤器:
$Parameters$: count=[1,1] // i.e. no filter
$ParamAnnotation$: count=[0,0]
$before$: count=[0,∞]
$after$: count=[0,∞]
这将找到至少有一个参数没有注释的所有方法。
我正在尝试使用结构搜索在 IntelliJ 中创建自定义检查。这个想法是找到所有具有一个或多个参数的方法,其中至少有一个没有注释。奖励:只命中非原始类型的参数。
到目前为止,我已经创建了以下搜索模板:
$MethodType$ $Method$(@$ParamAnnotation$ $ParameterType$ $Parameter$);
使用这些过滤器和搜索目标 "complete match":
$Parameters$: count[1,∞]
$ParamAnnotation$: count[0,0]
但是,这只会命中没有任何参数注释的方法。我希望它也匹配只有一些参数有注释而其他参数没有的方法。
是否可以在另一个过滤器中引用一个变量的计数,例如通过使用脚本过滤器?如果可以,怎么做?
您可以像这样创建一个搜索模板来做到这一点:
$MethodType$ $Method$($TypeBefore$ $before$,
@$ParamAnnotation$ $ParameterType$ $Parameter$,
$TypeAfter$ $after$);
过滤器:
$Parameters$: count=[1,1] // i.e. no filter
$ParamAnnotation$: count=[0,0]
$before$: count=[0,∞]
$after$: count=[0,∞]
这将找到至少有一个参数没有注释的所有方法。