Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8233099

[local-methods] Implementation member methods need better naming style

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Unresolved
    • Icon: P4 P4
    • repo-amber
    • repo-amber
    • tools
    • generic
    • generic

      Given:

      public class X {

          public static void main(String args []) {
              void goo() {
              }
              void foo() {
              }
          }
      }

      Javac emits the representation methods as:

      private static void local$main$1(); and
      private static void local$main$0();

      See that the source names are lost in translation. This was OK for lambdas as they are anonymous blocks of code, but is a gratuitous loss of information that could make for better readability of javap out put (say)


            vromero Vicente Arturo Romero Zaldivar
            sadayapalam Srikanth Adayapalam (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated: