langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/parser/JavacParser.java
changeset 28587 ce5606145ea3
parent 28454 63c31d7de8f6
child 29293 1583c6dd6df7
equal deleted inserted replaced
28462:8327024a9955 28587:ce5606145ea3
    83 
    83 
    84     /** The name table. */
    84     /** The name table. */
    85     private Names names;
    85     private Names names;
    86 
    86 
    87     /** End position mappings container */
    87     /** End position mappings container */
    88     private final AbstractEndPosTable endPosTable;
    88     protected final AbstractEndPosTable endPosTable;
    89 
    89 
    90     // Because of javac's limited lookahead, some contexts are ambiguous in
    90     // Because of javac's limited lookahead, some contexts are ambiguous in
    91     // the presence of type annotations even though they are not ambiguous
    91     // the presence of type annotations even though they are not ambiguous
    92     // in the absence of type annotations.  Consider this code:
    92     // in the absence of type annotations.  Consider this code:
    93     //   void m(String [] m) { }
    93     //   void m(String [] m) { }