Searching for rewrite rules

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-21 16:22:29

问题


Is there any way to browse or search rewrite rules? When I use flags like -ddump-rule-firings or -ddump-rule-rewrites I just get the name of the rule that fired and the rewrite that it caused, but not the actual rule itself...

Ideally I'd like to see what rewrite rules are in scope via GHCi, but realistically I'd be willing to settle for just an exhaustive list of the rewrite rules present in base.


回答1:


Alright, still hoping for a good answer to this, but if there isn't, I went ahead and did what pdexter suggested and grep'd base for rules. Here are the rules in base 4.9.


For anyone interested in replicating this:

  • clone http://git.haskell.org/ghc.git
  • navigate to ghc/libraries/base
  • grep recursively pcregrep -Mr '\{-# RULES(.|\n)*?#-\}' .


来源:https://stackoverflow.com/questions/38651602/searching-for-rewrite-rules

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