Commit 6487522
committed
Make dump print
This provides more information to the user when dumping types, and also makes the
output of dump slightly more similar to the type definition syntax.
Before:
```
julia> dump(BitSet)
BitSet <: AbstractSet{Int64}
bits::Vector{UInt64}
offset::Int64
```
After:
```
julia> dump(BitSet)
BitSet <: AbstractSet{Int64}
const bits::Vector{UInt64}
offset::Int64
```const before const fields1 parent 35cb8a5 commit 6487522
1 file changed
+3
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3007 | 3007 | | |
3008 | 3008 | | |
3009 | 3009 | | |
3010 | | - | |
| 3010 | + | |
| 3011 | + | |
| 3012 | + | |
3011 | 3013 | | |
3012 | 3014 | | |
3013 | 3015 | | |
| |||
0 commit comments