Package org.eclipse.php.internal.core.ast.util

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

Related Classes of org.eclipse.php.internal.core.ast.util.RandomAccessCharArrayReader

Copyright © 2018 www.massapicom. 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.