[java-completion] IDEA-314367. Completion for similar methods

-add new method names

GitOrigin-RevId: ca4f81f219990af65a08883bb21be0e3bdb04f71
This commit is contained in:
Mikhail Pyltsin
2024-03-14 14:48:57 +00:00
committed by intellij-monorepo-bot
parent 6fb371be0f
commit e264fb46bd
@@ -205,10 +205,11 @@ public final class MethodTags {
case "apply" -> anyFrom("invoke", "do", "call");
case "assert" -> anyFrom("expect", "verify", "test", "ensure");
case "build" -> anyFrom("create", "make", "generate");
case "call" -> anyFrom("execute", "run");
case "call" -> anyFrom("execute", "run", "compute");
case "check" -> anyFrom("test", "match");
case "count" -> anyFrom("size", "length");
case "compute" -> anyFrom("call", "execute");
case "convert" -> anyFrom("map");
case "count" -> anyFrom("size", "length");
case "create" -> anyFrom("build", "make", "generate");
case "delete" -> anyFrom("remove");
case "do" -> anyFrom("run", "execute", "call");