langtools/src/share/classes/com/sun/tools/javac/parser/Scanner.java
changeset 8243 33095f58932b
parent 8032 e1aa25ccdabb
child 8420 a9d8277c37d8
equal deleted inserted replaced
8242:3873b4aaf4a8 8243:33095f58932b
   136         names = fac.names;
   136         names = fac.names;
   137         keywords = fac.keywords;
   137         keywords = fac.keywords;
   138         source = fac.source;
   138         source = fac.source;
   139         allowBinaryLiterals = source.allowBinaryLiterals();
   139         allowBinaryLiterals = source.allowBinaryLiterals();
   140         allowHexFloats = source.allowHexFloats();
   140         allowHexFloats = source.allowHexFloats();
   141         allowUnderscoresInLiterals = source.allowBinaryLiterals();
   141         allowUnderscoresInLiterals = source.allowUnderscoresInLiterals();
   142     }
   142     }
   143 
   143 
   144     private static final boolean hexFloatsWork = hexFloatsWork();
   144     private static final boolean hexFloatsWork = hexFloatsWork();
   145     private static boolean hexFloatsWork() {
   145     private static boolean hexFloatsWork() {
   146         try {
   146         try {