Package net.gereon.jloom.problems

Examples of net.gereon.jloom.problems.SyntaxProblem


 
  private void handleParseProblem(ParsePattern... patterns)
  {
    String msg = "Expected " + getPatternText(patterns) + ".";
    int pos = getStartPosAbsolute() + position;
    addProblem(new SyntaxProblem(msg, pos, getLength() - position));
    position = getLength();
  }
View Full Code Here

TOP

Related Classes of net.gereon.jloom.problems.SyntaxProblem

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.