|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
SymbolFacade.java | - | 100% | 100% | 100% |
|
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.ASTCompilationUnit; | |
7 | ||
8 | public class SymbolFacade { | |
9 | 1113 | public void initializeWith(ASTCompilationUnit node) { |
10 | 1113 | ScopeAndDeclarationFinder sc = new ScopeAndDeclarationFinder(); |
11 | 1113 | node.jjtAccept(sc, null); |
12 | 1113 | OccurrenceFinder of = new OccurrenceFinder(); |
13 | 1113 | node.jjtAccept(of, null); |
14 | } | |
15 | } |
|