src/share/classes/com/sun/tools/javac/parser/JavacParser.java

changeset 581
f2fdd52e4e87
parent 554
9d9f26857129
child 607
b49b0d72c071
equal deleted inserted replaced
580:46cf751559ae 581:f2fdd52e4e87
41 * tree. It operates by recursive descent, with code derived 41 * tree. It operates by recursive descent, with code derived
42 * systematically from an LL(1) grammar. For efficiency reasons, an 42 * systematically from an LL(1) grammar. For efficiency reasons, an
43 * operator precedence scheme is used for parsing binary operation 43 * operator precedence scheme is used for parsing binary operation
44 * expressions. 44 * expressions.
45 * 45 *
46 * <p><b>This is NOT part of any API supported by Sun Microsystems. If 46 * <p><b>This is NOT part of any supported API.
47 * you write code that depends on this, you do so at your own risk. 47 * If you write code that depends on this, you do so at your own risk.
48 * This code and its internal interfaces are subject to change or 48 * This code and its internal interfaces are subject to change or
49 * deletion without notice.</b> 49 * deletion without notice.</b>
50 */ 50 */
51 public class JavacParser implements Parser { 51 public class JavacParser implements Parser {
52 52

mercurial