com.github.uscexp.grappa.extension.parser.peg.AstOPTIONTreeNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grappa.extension Show documentation
Show all versions of grappa.extension Show documentation
Extension for parboiled/grappa parser.
/*
* Copyright (C) 2014 by haui - all rights reserved
*/
package com.github.uscexp.grappa.extension.parser.peg;
import org.parboiled.Node;
/**
* Command implementation for the PegParser
rule: OPTION.
*/
public class AstOPTIONTreeNode extends AstPegBaseTreeNode {
public static final String OPTION = "optional";
public static final String START_OPTION = "#optional#";
public AstOPTIONTreeNode(Node> node, String value) {
super(node, value);
}
@Override
protected void interpret(Long id)
throws ReflectiveOperationException {
super.interpret(id);
openProcessStore.getStack().push(OPTION);
closeProcessStore.getStack().push(START_OPTION);
}
}