Skip to content

Commit

Permalink
rename parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
ftomassetti committed Oct 14, 2016
1 parent d43623b commit 0479558
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -47,16 +47,16 @@ default boolean canBeAssignedTo(TypeDeclaration other) {


boolean isAssignableBy(TypeDeclaration other); boolean isAssignableBy(TypeDeclaration other);


SymbolReference<? extends ValueDeclaration> solveSymbol(String substring, TypeSolver typeSolver); SymbolReference<? extends ValueDeclaration> solveSymbol(String name, TypeSolver typeSolver);


/** /**
* Try to solve a symbol just in the declaration, it does not delegate to the container. * Try to solve a symbol just in the declaration, it does not delegate to the container.
* *
* @param substring * @param name
* @param typeSolver * @param typeSolver
* @return * @return
*/ */
SymbolReference<TypeDeclaration> solveType(String substring, TypeSolver typeSolver); SymbolReference<TypeDeclaration> solveType(String name, TypeSolver typeSolver);


List<ReferenceType> getAncestors(); List<ReferenceType> getAncestors();


Expand Down

0 comments on commit 0479558

Please sign in to comment.