digitalmars.D - Hooray for DustMite
- Andrew Wiley (22/22) Oct 09 2011 Just wanted to give kudos to Vladimir Panteleev for his excellent
- Trass3r (2/2) Oct 10 2011 Yep, it's a really nifty tool.
- Vladimir Panteleev (8/9) Oct 11 2011 I'm glad so many people are finding DustMite useful :)
Just wanted to give kudos to Vladimir Panteleev for his excellent
DustMite utility, which reduced a DMD 2.055 backend ICE in Dinecraft
(a ~10,000 line codebase) to this:
struct ChunkLoc {
}
class Chunk {
private ChunkLoc _loc;
property
public ChunkLoc loc() {
return _loc;
}
}
private struct FiberWaitingForChunk {
}
class WorldCache {
FiberWaitingForChunk*[ChunkLoc] _fibersWaitingForChunks;
void chunkLoaded(Chunk chunk) {
_fibersWaitingForChunks.remove(chunk.loc);
}
}
Which has now been filed at http://d.puremagic.com/issues/show_bug.cgi?id=6799
Thanks!
Oct 09 2011
Yep, it's a really nifty tool. I already filed several bugs that had been reduced with DustMite.
Oct 10 2011
On Mon, 10 Oct 2011 09:26:55 +0300, Andrew Wiley <wiley.andrew.j gmail.com> wrote:Thanks!I'm glad so many people are finding DustMite useful :) I can't help but wonder if it can be helpful to people outside the D community. Support for other languages is pretty easy to add. -- Best regards, Vladimir mailto:vladimir thecybershadow.net
Oct 11 2011









Trass3r <un known.com> 