mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
[java-completion] IDEA-314367. Completion for similar methods
-add new method names GitOrigin-RevId: ca4f81f219990af65a08883bb21be0e3bdb04f71
This commit is contained in:
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");
|
||||
|
||||
Reference in New Issue
Block a user