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

org.unlaxer.context.ParseContextBase Maven / Gradle / Ivy

package org.unlaxer.context;

import java.util.Deque;
import java.util.Map;

import org.unlaxer.Source;
import org.unlaxer.TransactionElement;
import org.unlaxer.parser.Parser;
import org.unlaxer.parser.Parsers;
import org.unlaxer.parser.combinator.ChoiceInterface;
import org.unlaxer.parser.combinator.NonOrdered;

public interface ParseContextBase{
	
	public Deque getTokenStack();
	
	public ParseContext get();
	
	public boolean doCreateMetaToken();
	
	public Map getChosenParserByChoice();
	
	public Map getOrderedParsersByNonOrdered();
	
	public Source getSource();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy