com.github.uscexp.grappa.extension.parser.peg.AstLiteralTreeNode 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.
The newest version!
/*
* Copyright (C) 2014 - 2016 by haui - all rights reserved
*/
package com.github.uscexp.grappa.extension.parser.peg;
import com.github.uscexp.grappa.extension.util.IStack;
/**
* Command implementation for the PegParser
rule: literal.
*/
public class AstLiteralTreeNode extends AstPegBaseTreeNode {
public AstLiteralTreeNode(String rule, String value) {
super(rule, value);
}
@Override
protected void interpretAfterChilds(Long id) throws ReflectiveOperationException {
super.interpretAfterChilds(id);
IStack