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

changeset 1063
8c51767d534d
parent 963
e2497b11a021
child 1205
4112748288bb
child 1413
fb91ff186894
equal deleted inserted replaced
1062:bf5f28dafa7c 1063:8c51767d534d
67 67
68 /** 68 /**
69 * The boolean type class 69 * The boolean type class
70 */ 70 */
71 public final class BooleanType extends Type { 71 public final class BooleanType extends Type {
72 private static final long serialVersionUID = 1L;
72 73
73 private static final CompilerConstants.Call VALUE_OF = staticCallNoLookup(Boolean.class, "valueOf", Boolean.class, boolean.class); 74 private static final CompilerConstants.Call VALUE_OF = staticCallNoLookup(Boolean.class, "valueOf", Boolean.class, boolean.class);
74 private static final CompilerConstants.Call TO_STRING = staticCallNoLookup(Boolean.class, "toString", String.class, boolean.class); 75 private static final CompilerConstants.Call TO_STRING = staticCallNoLookup(Boolean.class, "toString", String.class, boolean.class);
75 76
76 /** 77 /**

mercurial