Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Searching for rewrite rules

Tags:

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.

like image 550
Alec Avatar asked Jul 29 '16 06:07

Alec


1 Answers

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)*?#-\}' .
like image 86
Alec Avatar answered Sep 28 '22 03:09

Alec