public void testParseVariable() throws Exception {
VarNode var = (new ExpressionParser("$boo")).parseVariable().getChild(0);
assertEquals("boo", var.getName());
assertEquals("$boo", var.toSourceString());
}
public void testParseDataReference() throws Exception {