Add jep513 module: flexible constructor bodies on JDK 25 and 27

Runnable sources, broken examples and captured transcripts for the ankurm.com JEP 513 article, including the JDK 25 vs 27 compiler wording differences.

Co-Authored-By: Claude Sonnet 5 <[email protected]>
Claude-Session: https://claude.ai/code/session_01TF9JWFvJSNm6HVzswzZU5a
This commit is contained in:
Claude
2026-09-24 10:42:36 +00:00
parent e0cb6e83e2
commit 2ebea58d39
30 changed files with 510 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
class Parent { Parent(int x) {} }
class SuperInBranch extends Parent {
SuperInBranch(boolean big) {
if (big) super(100); else super(1); // super(...) must appear once, at top level of the constructor body
}
}