First, congratulation for jscoverage, according to me it is a very well designed tool - the proxy server is a really smart solution.
Btw, I experienced some difficulities and I had to surrender.
I had difficultes because the fwk I'm using is quite ... different. I use something like that :
myObj.prototype = {
data : {
Type: "mydata.Data"
},
init : function(){
// my initialization
},
}
Then, the're is an extern initialization that "post-build" the object:
data is evaled again with : "data = new mydata.Data();". (Something like that.)
So I can't use jscoverage.... because the data declaration is wrapped (and then can't be find in the prototype).
I'm just wondering why jscoverage wrap the code :
data : {
Type: "mydata.Data"
},
... and not only functions declaration ?
Because, in this case, it would work really fine.
(And I understand this is not an usual way to work with JS - it's ok

Guillaume