com.sun.tools.javac.parser |
|
Java Source File Name | Type | Comment |
DocCommentScanner.java | Class | An extension to the base lexical analyzer that captures
and processes the contents of doc comments. |
EndPosParser.java | Class | This class is similar to Parser except that it stores ending
positions for the tree nodes. |
Keywords.java | Class | Map from Name to Token and Token to String. |
Lexer.java | Interface | The lexical analyzer maps an input stream consisting of ASCII
characters and Unicode escapes into a token sequence. |
Parser.java | Class | The parser maps a token sequence into an abstract syntax
tree. |
Scanner.java | Class | The lexical analyzer maps an input stream consisting of
ASCII characters and Unicode escapes into a token sequence.
This is NOT part of any API supported by Sun Microsystems. |
Token.java | enum | An interface that defines codes for Java source tokens
returned from lexical analysis.
This is NOT part of any API supported by Sun Microsystems. |