ReSharper 搜索模式:“无法解析模式”
R# 5.1.1751.8
当我对...执行模式搜索时
catch (Exception e) {}
,我会看到一个错误对话框,其中显示“无法解析模式”。
无法解析该模式怎么办?我做错了什么?
R# 5.1.1751.8
When I perform a pattern search for...
catch (Exception e) {}
...I'm shown an error dialog which says "Can not parse pattern".
What about that pattern cannot be parsed? What am I doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我向 JetBrains 支持人员发送了电子邮件,得到了以下回复:
ReSharper 无法仅解析 C# 语言构造的一部分。在本例中,“catch(Exception e){}”是 try/catch 构造的一部分。以下将搜索空的 catch 子句:(
其中 $stmt$ 是“一个或多个语句”)。
I emailed JetBrains support and got the following response:
ReSharper cannot parse only part of a C# language construct. In this case, 'catch(Exception e){}' is part of a try/catch construct. The following will search for empty catch clauses:
( where $stmt$ is "one or more statements" ).