All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.uscexp.grappa.extension.parser.peg.AstCharacterTreeNode Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (C) 2014 - 2016 by haui - all rights reserved
 */
package com.github.uscexp.grappa.extension.parser.peg;

/**
 * Command implementation for the PegParser rule: character.
 */
public class AstCharacterTreeNode extends AstPegBaseTreeNode {
	public AstCharacterTreeNode(String rule, String value) {
		super(rule, value);
	}

	@Override
	protected void interpretAfterChilds(Long id) throws ReflectiveOperationException {
		super.interpretAfterChilds(id);
		if ((this.value != null) && (!this.value.isEmpty())) {
			this.processStore.getTierStack().push("ch('" + this.value + "')");
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy