use nyar_error::third_party::Url;
use std::path::PathBuf;
use valkyrie_parser::{NewStatementNode, ProgramContext, RangeLiteralNode};
use super::*;
fn take_expression(input: StatementNode) -> Option<MainExpressionNode> {
todo!()
}
fn debug_expression(input: &str) -> std::io::Result<()> {
let here = Path::new(env!("CARGO_MANIFEST_DIR")).join("tests").canonicalize()?;
let cst = ValkyrieParser::parse_cst(input, ValkyrieRule::GenericHide).unwrap();
println!("Short Form:\n{}", cst);
Ok(())
}
#[test]
fn debug() {
let raw = "<A>B";
debug_expression(raw).unwrap();
}