mirror of
https://github.com/openjdk/jdk.git
synced 2026-01-31 05:28:33 +00:00
8267570: The comment of the class JavacParser is not appropriate
Reviewed-by: jjg
This commit is contained in:
parent
379376f078
commit
b98e52a491
@ -62,11 +62,12 @@ import static com.sun.tools.javac.resources.CompilerProperties.Fragments.Implici
|
||||
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.
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user