package org.nwapw.abacus.parsing import org.nwapw.abacus.tree.TreeNode /** * Converter from tokens into a parse tree. * * An interface that provides the ability to convert a list of tokens * into a parse tree. * * @param the type of tokens accepted by this parser. */ interface Parser { /** * Constructs a tree out of the given tokens. * * @param tokens the tokens to construct a tree from. * @return the constructed tree, or null on error. */ fun constructTree(tokens: List): TreeNode }