Clover coverage report - PMD - 3.3
Coverage timestamp: Thu Sep 15 2005 17:59:57 EDT
file stats: LOC: 57   Methods: 5
NCLOC: 45   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
LocalScope.java 75% 90% 80% 84.8%
coverage coverage
 1    /**
 2    * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
 3    */
 4    package net.sourceforge.pmd.symboltable;
 5   
 6    import net.sourceforge.pmd.ast.ASTName;
 7    import net.sourceforge.pmd.ast.SimpleNode;
 8    import net.sourceforge.pmd.util.Applier;
 9   
 10    import java.util.ArrayList;
 11    import java.util.HashMap;
 12    import java.util.List;
 13    import java.util.Map;
 14   
 15    public class LocalScope extends AbstractScope {
 16   
 17    protected Map variableNames = new HashMap();
 18   
 19  290 public NameDeclaration addVariableNameOccurrence(NameOccurrence occurrence) {
 20  290 NameDeclaration decl = findVariableHere(occurrence);
 21  290 if (decl != null && !occurrence.isThisOrSuper()) {
 22  288 List nameOccurrences = (List)variableNames.get(decl);
 23  288 nameOccurrences.add(occurrence);
 24  288 SimpleNode n = occurrence.getLocation();
 25  288 if (n instanceof ASTName) {
 26  288 ((ASTName)n).setNameDeclaration(decl);
 27    } // TODO what to do with PrimarySuffix case?
 28    }
 29  290 return decl;
 30    }
 31   
 32  249 public Map getVariableDeclarations() {
 33  249 VariableUsageFinderFunction f = new VariableUsageFinderFunction(variableNames);
 34  249 Applier.apply(f, variableNames.keySet().iterator());
 35  249 return f.getUsed();
 36    }
 37   
 38  332 public void addDeclaration(VariableNameDeclaration nameDecl) {
 39  332 if (variableNames.containsKey(nameDecl)) {
 40  0 throw new RuntimeException("Variable " + nameDecl + " is already in the symbol table");
 41    }
 42  332 variableNames.put(nameDecl, new ArrayList());
 43    }
 44   
 45  1925 public NameDeclaration findVariableHere(NameOccurrence occurrence) {
 46  1925 if (occurrence.isThisOrSuper()) {
 47  56 return null;
 48    }
 49  1869 ImageFinderFunction finder = new ImageFinderFunction(occurrence.getImage());
 50  1869 Applier.apply(finder, variableNames.keySet().iterator());
 51  1869 return finder.getDecl();
 52    }
 53   
 54  0 public String toString() {
 55  0 return "LocalScope:" + glomNames(variableNames.keySet().iterator());
 56    }
 57    }