mirror of https://github.com/zachjs/sv2v.git
support exclusion of the unbased unsized conversion
This commit is contained in:
parent
c822d2e8c6
commit
3abe12dfbd
|
|
@ -1,3 +1,10 @@
|
|||
## Unreleased
|
||||
|
||||
### New Features
|
||||
|
||||
* Added support for excluding the conversion of unbased unsized literals (e.g.,
|
||||
`'1`, `'x`) via `--exclude UnbasedUniszed`
|
||||
|
||||
## v0.0.9
|
||||
|
||||
### Breaking Changes
|
||||
|
|
|
|||
|
|
@ -76,7 +76,7 @@ mainPhases selectExclude =
|
|||
, Convert.Inside.convert
|
||||
, Convert.IntTypes.convert
|
||||
, Convert.MultiplePacked.convert
|
||||
, Convert.UnbasedUnsized.convert
|
||||
, selectExclude Job.UnbasedUnsized Convert.UnbasedUnsized.convert
|
||||
, Convert.Cast.convert
|
||||
, Convert.ParamType.convert
|
||||
, Convert.HierConst.convert
|
||||
|
|
|
|||
|
|
@ -24,6 +24,7 @@ data Exclude
|
|||
| Interface
|
||||
| Logic
|
||||
| Succinct
|
||||
| UnbasedUnsized
|
||||
deriving (Typeable, Data, Eq)
|
||||
|
||||
data Write
|
||||
|
|
|
|||
Loading…
Reference in New Issue