Package com.wesleyhome.math.equation.grammer.EquationGrammarParser

Examples of com.wesleyhome.math.equation.grammer.EquationGrammarParser.ProgContext


   * @throws ParseCancellationException
   *             throws if equation is invalid
   */
  List<TerminalNode> parseEquation(final String equation) throws ParseCancellationException {
    final EquationGrammarParser parser = getParser(equation);
    final ProgContext tree = parser.prog();
    return parseTree(tree);
  }
View Full Code Here

TOP

Related Classes of com.wesleyhome.math.equation.grammer.EquationGrammarParser.ProgContext

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.