Package org.eclipse.php.internal.core.compiler.ast.parser.php53

Examples of org.eclipse.php.internal.core.compiler.ast.parser.php53.CompilerAstLexer


  }

  private AstLexer getLexer(Reader reader) throws Exception {
    AstLexer result = null;
    if (PHPVersion.PHP5.equals(phpVersion)) {
      result = new CompilerAstLexer(reader);
      ((CompilerAstLexer) result).setAST(new AST(reader, PHPVersion.PHP5,
          false, useShortTags));
      stInScriptin = CompilerAstLexer.ST_IN_SCRIPTING; // save the initial
      // state for reset
      // operation
View Full Code Here

TOP

Related Classes of org.eclipse.php.internal.core.compiler.ast.parser.php53.CompilerAstLexer

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.