"@param" parameter name must match the name of some formal parameter

This commit is contained in:
Ben Liblit 2017-12-19 14:26:13 -06:00
parent ba71f45119
commit a7f00ffce8
3 changed files with 2 additions and 4 deletions

View File

@ -47,8 +47,6 @@ public class NodejsRequiredSourceModule extends SourceFileModule {
private final String className;
/**
* @param workingDir
* Must be a direct or indirect parent folder of file f.
* @param f
* Must be a file located below folder workingDir.
* @param clonedFrom

View File

@ -68,7 +68,7 @@ public interface ISupergraph<T, P> extends NumberedGraph<T> {
Iterator<? extends T> getReturnSites(T call, P callee);
/**
* @param r a "return" node in the supergraph
* @param ret a "return" node in the supergraph
* @param callee a "called" "procedure" in the supergraph. if callee is null, answer return sites for which no callee was found.
* @return the corresponding call nodes. There may be many.
*/

View File

@ -46,7 +46,7 @@ public abstract class SSACheckCastInstruction extends SSAInstruction {
/**
* @param result A new value number def'fed by this instruction when the type check succeeds.
* @param val The value being checked by this instruction
* @param type The type which this instruction checks
* @param types The types which this instruction checks
*/
protected SSACheckCastInstruction(int iindex, int result, int val, TypeReference[] types, boolean isPEI) {
super(iindex);