src/share/classes/com/sun/tools/javac/code/TypeTags.java

changeset 1358
fc123bdeddb8
parent 1347
1408af4cd8b0
equal deleted inserted replaced
1357:c75be5bc5283 1358:fc123bdeddb8
1 /* 1 /*
2 * Copyright (c) 1999, 2005, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this 7 * published by the Free Software Foundation. Oracle designates this
104 104
105 /** The tag of deferred expression types in method context 105 /** The tag of deferred expression types in method context
106 */ 106 */
107 public static final int DEFERRED = FORALL+1; 107 public static final int DEFERRED = FORALL+1;
108 108
109 /** The tag of the bottom type <null>. 109 /** The tag of the bottom type {@code <null>}.
110 */ 110 */
111 public static final int BOT = DEFERRED+1; 111 public static final int BOT = DEFERRED+1;
112 112
113 /** The tag of a missing type. 113 /** The tag of a missing type.
114 */ 114 */

mercurial