Examples of RandomAccessCharArrayReader


Examples of org.eclipse.php.internal.core.ast.util.RandomAccessCharArrayReader

   *            The char array content of the scanner.
   * @throws IOException
   */
  public TokenScanner(AstLexer scanner, char[] content) throws IOException {
    this.scanner = scanner;
    this.charReader = new RandomAccessCharArrayReader(content);
    this.scanner.yyreset(this.charReader);
    this.scanner.resetCommentList();
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.