Generate getters without 'get' prefix for record components (IDEA-229300)

GitOrigin-RevId: 8014b1b605f78e5ccf0de97eabf894f5bc5a67c1
This commit is contained in:
Tagir Valeev
2019-12-23 09:33:29 +00:00
committed by intellij-monorepo-bot
parent 4110666a62
commit 7753ee638a
8 changed files with 110 additions and 76 deletions
@@ -0,0 +1,3 @@
record Test(int component) {
compon<caret>
}
@@ -0,0 +1,5 @@
record Test(int component) {
public int component() {
<selection>return component;</selection>
}
}