jscover.instrument.NodeVisitor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JSCover Show documentation
Show all versions of JSCover Show documentation
JSCover is a tool that measures code coverage for JavaScript programs.
The newest version!
package jscover.instrument;
import com.google.javascript.rhino.Node;
public interface NodeVisitor {
boolean visit(Node node);
}