< prev index next >

src/jdk.compiler/share/classes/com/sun/tools/javac/util/Names.java

Print this page
@@ -226,10 +226,15 @@
      // pattern switches
      public final Name typeSwitch;
      public final Name enumSwitch;
      public final Name enumConstant;
  
+     // code reflection
+     public final Name jdk_incubator_code;
+     public final Name quoted;
+     public final Name quotable;
+ 
      // special annotation names
      public final Name requiresIdentityInternal;
  
      public final Name.Table table;
  

@@ -414,10 +419,15 @@
          // pattern switches
          typeSwitch = fromString("typeSwitch");
          enumSwitch = fromString("enumSwitch");
          enumConstant = fromString("enumConstant");
  
+         // code reflection
+         jdk_incubator_code = fromString("jdk.incubator.code");
+         quoted = fromString("Quoted");
+         quotable = fromString("Quotable");
+ 
          // special annotations:
          requiresIdentityInternal = fromString("jdk.internal.RequiresIdentity+Annotation");
      }
  
      protected Name.Table createTable(Options options) {
< prev index next >