No flags found
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
fe4b650
... +1 ...
0c86139
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
1862 | 1862 | Type elemtype = (cast(TypeArray)val.type).next; |
|
1863 | 1863 | d_uns64 elemsize = elemtype.size(); |
|
1864 | 1864 | ||
1865 | - | // It's OK to cast from fixed length to dynamic array, eg &int[3] to int[]* |
|
1866 | - | if (val.type.ty == Tsarray && pointee.ty == Tarray && elemsize == pointee.nextOf().size()) |
|
1867 | - | { |
|
1868 | - | emplaceExp!(AddrExp)(pue, e.loc, val, e.type); |
|
1869 | - | result = pue.exp(); |
|
1870 | - | return; |
|
1871 | - | } |
|
1872 | - | ||
1873 | 1865 | // It's OK to cast from fixed length to fixed length array, eg &int[n] to int[d]*. |
|
1874 | 1866 | if (val.type.ty == Tsarray && pointee.ty == Tsarray && elemsize == pointee.nextOf().size()) |
|
1875 | 1867 | { |
Learn more Showing 1 files with coverage changes found.
src/dmd/dinterpret.d
Files | Coverage |
---|---|
src/dmd | 0.004% 77.205% |
Project Totals (203 files) | 77.205% |
0c86139
ac124b5
fe4b650