Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
8267570: The comment of the class JavacParser is not appropriate
Reviewed-by: jjg
  • Loading branch information
lgxbslgx authored and Vicente Romero committed Jun 2, 2021
1 parent 379376f commit b98e52a
Showing 1 changed file with 6 additions and 5 deletions.
Expand Up @@ -62,11 +62,12 @@
import static com.sun.tools.javac.resources.CompilerProperties.Fragments.VarAndExplicitNotAllowed;
import static com.sun.tools.javac.resources.CompilerProperties.Fragments.VarAndImplicitNotAllowed;

/** The parser maps a token sequence into an abstract syntax
* tree. It operates by recursive descent, with code derived
* systematically from an LL(1) grammar. For efficiency reasons, an
* operator precedence scheme is used for parsing binary operation
* expressions.
/**
* The parser maps a token sequence into an abstract syntax tree.
* The parser is a hand-written recursive-descent parser that
* implements the grammar described in the Java Language Specification.
* For efficiency reasons, an operator precedence scheme is used
* for parsing binary operation expressions.
*
* <p><b>This is NOT part of any supported API.
* If you write code that depends on this, you do so at your own risk.
Expand Down

1 comment on commit b98e52a

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.