use crateAST;
use crateTokens;
use crateToText;
/// Represents an unparseable list of tokens.
// impl ToText for UnparseableAST {
// fn to_text(&self) -> String {
// format!(
// " [cannot parse: {}] ",
// self.tokens.iter().map(Tokens::to_text).collect::<Vec<String>>().join(" / ")
// )
// }
// }