diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2017-07-25 16:59:55 +0000 |
---|---|---|
committer | Matthew Pickering <matthewtpickering@gmail.com> | 2017-07-25 16:59:55 +0000 |
commit | 8b50cd4721f87a3d37254494d56d0388fd4c9b5f (patch) | |
tree | 0391359561665eae672be46fc2c96a6d43e4b9d5 /compiler/utils/OutputableAnnotation.hs | |
parent | 5256c89d3172d353d4ebc595b8c38c7ae5a796c9 (diff) | |
download | haskell-8b50cd4721f87a3d37254494d56d0388fd4c9b5f.tar.gz |
Start of annotating core
Diffstat (limited to 'compiler/utils/OutputableAnnotation.hs')
-rw-r--r-- | compiler/utils/OutputableAnnotation.hs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/compiler/utils/OutputableAnnotation.hs b/compiler/utils/OutputableAnnotation.hs new file mode 100644 index 0000000000..f506a0b20b --- /dev/null +++ b/compiler/utils/OutputableAnnotation.hs @@ -0,0 +1,9 @@ +{-# LANGUAGE GADTs #-} +module OutputableAnnotation (PExpr(..)) where + +import CoreSyn + +data PExpr where + PCoreExpr :: CoreExpr -> PExpr + + |