< prev index next >

src/jdk/nashorn/internal/codegen/types/Type.java

Print this page

        

@@ -919,11 +919,11 @@
     public static final NumericType NUMBER = putInCache(new NumberType());
 
     /**
      * This is the long singleton, used for all long types
      */
-    public static final BitwiseType LONG = putInCache(new LongType());
+    public static final Type LONG = putInCache(new LongType());
 
     /**
      * A string singleton
      */
     public static final Type STRING = putInCache(new ObjectType(String.class));
< prev index next >