Package org.jbehave.core.story.codegen.sablecc.parser

Examples of org.jbehave.core.story.codegen.sablecc.parser.Parser


public class TextStoryParser implements StoryParser {
  public StoryDetails parseStory(Reader in) {
    try {
      Lexer lexer = new Lexer(new PushbackReader(in, 1024));
      Parser parser = new Parser(lexer);
      Start root = parser.parse();
      StoryDetailsBuilder builder = new StoryDetailsBuilder();
      root.apply(builder);
      return builder.getStoryDetails();
    } catch (IOException e) {
      throw new RuntimeException(e.getMessage());
View Full Code Here

TOP

Related Classes of org.jbehave.core.story.codegen.sablecc.parser.Parser

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.