Package fasp.datatypes

Examples of fasp.datatypes.NonGroundProgram


* @author Jeroen Janssen <Jeroen.Janssen@vub.ac.be>
*/
public class ProgramParser extends AbstractParser<NonGroundProgram> {
  public NonGroundProgram parse(TokenState st) throws ParseException {
    ListWithEndTokenParser ruleParser = new ListWithEndTokenParser(new RuleParser(),Token.Type.EOF);
    return new NonGroundProgram(ruleParser.parse(st));
  }
View Full Code Here

TOP

Related Classes of fasp.datatypes.NonGroundProgram

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.