Clover coverage report - Java Language Levels Test Coverage (javalanglevels-20120305-r5436)
Coverage timestamp: Sun Mar 4 2012 22:02:46 CST
file stats: LOC: 25   Methods: 1
NCLOC: 11   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
Primary.java - 100% 100% 100%
coverage
 1    package edu.rice.cs.javalanglevels.tree;
 2   
 3    import edu.rice.cs.javalanglevels.SourceInfo;
 4   
 5    /**
 6    * Class Primary, a component of the JExpressionIF composite hierarchy.
 7    * Note: null is not allowed as a value for any field.
 8    * @version Generated automatically by ASTGen at Sun Mar 04 22:01:28 CST 2012
 9    */
 10    public abstract class Primary extends Expression {
 11   
 12    /**
 13    * Constructs a Primary.
 14    * @throws java.lang.IllegalArgumentException If any parameter to the constructor is null.
 15    */
 16  1944 public Primary(SourceInfo in_sourceInfo) {
 17  1944 super(in_sourceInfo);
 18    }
 19   
 20   
 21    public abstract <RetType> RetType visit(JExpressionIFVisitor<RetType> visitor);
 22    public abstract void visit(JExpressionIFVisitor_void visitor);
 23    public abstract void outputHelp(TabPrintWriter writer);
 24    protected abstract int generateHashCode();
 25    }