Structural Search to match method call with generic parameter

做~自己de王妃 提交于 2019-12-06 13:53:05

This is currently not possible without resorting to hack. The trick is use a script constraint:

search template

$Instance$.$MethodCall$($Parameter$)

variables

$Instance$ min/max count: 0,1
$MethodCall text/regexp: someStuff
$Parameter$ script text: __context__.type.parameters[0].presentableText.contains("Foo"), expression type: List

I have submitted a bug report.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!