Chris Webster's Weblog
JavaScript code coverage tool
I came across this link to a tool for measuring JavaScript code coverage(http://siliconforks.com/jscoverage/). I haven't yet had a chance to check it out but sounds interesting.Posted at 11:46AM Aug 08, 2007 by Christopher Webster in General | Comments[2]
Wednesday Aug 08, 2007
Fine
Posted by Dhritiman Banerjee on August 09, 2007 at 05:20 AM PDT #
I have a JavaScript engine question for you. I have a really simple class in my Classpath
public class A {}
doesn't get simpler than that. I would LOVE to write
new ScriptEngineManager().getEngineByName("JavaScript").eval("new A();");
I can not figure out how to change the classpath of the ScriptEngine! I can instantiate other objects, but not this one. What do I need to do? this is a standalone application.
Posted by Anonymous on August 13, 2007 at 05:38 PM PDT #