Error highlighting for records: record bodies, record members (8.10.2, 8.10.3) IDEA-228460

Also ChangeModifierIntention: do not suggest to change component accessor access modifier
Also AddExceptionToThrowsFix: do not suggest to add throws to component accessor

GitOrigin-RevId: 6ce3d43f5160c075a2c66ac01af895a1212cc9a3
This commit is contained in:
Tagir Valeev
2019-12-18 06:32:21 +00:00
committed by intellij-monorepo-bot
parent d887f8b142
commit 028a78cae3
13 changed files with 161 additions and 4 deletions
@@ -0,0 +1,6 @@
// "Add exception to method signature" "false"
record X(int foo) {
public int foo() {
throw new <caret>Exception();
}
}