nashorn/src/jdk/nashorn/internal/parser/Lexer.java
changeset 16226 0e4f37e6cc40
parent 16211 41e031a45186
child 16233 95d3e01c04c3
equal deleted inserted replaced
16225:81d58c2b9fcf 16226:0e4f37e6cc40
   287      */
   287      */
   288     protected void add(final TokenType type, final int start) {
   288     protected void add(final TokenType type, final int start) {
   289         add(type, start, position);
   289         add(type, start, position);
   290     }
   290     }
   291 
   291 
   292     static String getWhitespaceRegExp() {
   292     public static String getWhitespaceRegExp() {
   293         return JAVASCRIPT_WHITESPACE_IN_REGEXP;
   293         return JAVASCRIPT_WHITESPACE_IN_REGEXP;
   294     }
   294     }
   295 
   295 
   296     /**
   296     /**
   297      * Skip end of line.
   297      * Skip end of line.