Commit 3abe12df by Zachary Snow

support exclusion of the unbased unsized conversion

parent c822d2e8
## Unreleased
### New Features
* Added support for excluding the conversion of unbased unsized literals (e.g.,
`'1`, `'x`) via `--exclude UnbasedUniszed`
## v0.0.9 ## v0.0.9
### Breaking Changes ### Breaking Changes
......
...@@ -76,7 +76,7 @@ mainPhases selectExclude = ...@@ -76,7 +76,7 @@ mainPhases selectExclude =
, Convert.Inside.convert , Convert.Inside.convert
, Convert.IntTypes.convert , Convert.IntTypes.convert
, Convert.MultiplePacked.convert , Convert.MultiplePacked.convert
, Convert.UnbasedUnsized.convert , selectExclude Job.UnbasedUnsized Convert.UnbasedUnsized.convert
, Convert.Cast.convert , Convert.Cast.convert
, Convert.ParamType.convert , Convert.ParamType.convert
, Convert.HierConst.convert , Convert.HierConst.convert
......
...@@ -24,6 +24,7 @@ data Exclude ...@@ -24,6 +24,7 @@ data Exclude
| Interface | Interface
| Logic | Logic
| Succinct | Succinct
| UnbasedUnsized
deriving (Typeable, Data, Eq) deriving (Typeable, Data, Eq)
data Write data Write
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment