Show
Ignore:
Timestamp:
06/18/09 20:21:35 (5 months ago)
Author:
EricAllen
Message:

Added API linker and associated hooks (work in progress).
Added some testing of cache cleaning.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/ProjectFortress/src/com/sun/fortress/compiler/index/CompilationUnitIndex.java

    r3760 r3876  
    8282    } 
    8383 
     84    public Set<APIName> comprises() {  
     85        final Set<APIName> result = new HashSet<APIName>(); 
     86        for (APIName _apiName : ast().getComprises()) {  
     87            result.add(_apiName); 
     88        } 
     89        return result; 
     90    } 
     91 
    8492    public Map<Id, Variable> variables() { return _variables; } 
    8593