Clover coverage report - Java Language Levels Test Coverage (javalanglevels-20120305-r5436)
Coverage timestamp: Sun Mar 4 2012 22:02:46 CST
file stats: LOC: 39   Methods: 3
NCLOC: 23   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
AssignmentExpression.java 50% 77.8% 100% 75%
coverage coverage
 1    package edu.rice.cs.javalanglevels.tree;
 2   
 3    import edu.rice.cs.javalanglevels.SourceInfo;
 4   
 5    /**
 6    * Class AssignmentExpression, 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 AssignmentExpression extends Expression {
 11    private final Expression _name;
 12    private final Expression _value;
 13   
 14    /**
 15    * Constructs a AssignmentExpression.
 16    * @throws java.lang.IllegalArgumentException If any parameter to the constructor is null.
 17    */
 18  130 public AssignmentExpression(SourceInfo in_sourceInfo, Expression in_name, Expression in_value) {
 19  130 super(in_sourceInfo);
 20   
 21  130 if (in_name == null) {
 22  0 throw new java.lang.IllegalArgumentException("Parameter 'name' to the AssignmentExpression constructor was null. This class may not have null field values.");
 23    }
 24  130 _name = in_name;
 25   
 26  130 if (in_value == null) {
 27  0 throw new java.lang.IllegalArgumentException("Parameter 'value' to the AssignmentExpression constructor was null. This class may not have null field values.");
 28    }
 29  130 _value = in_value;
 30    }
 31   
 32  210 public Expression getName() { return _name; }
 33  210 public Expression getValue() { return _value; }
 34   
 35    public abstract <RetType> RetType visit(JExpressionIFVisitor<RetType> visitor);
 36    public abstract void visit(JExpressionIFVisitor_void visitor);
 37    public abstract void outputHelp(TabPrintWriter writer);
 38    protected abstract int generateHashCode();
 39    }