return process(s, "vardef", VariableDefinition.class);
}
public static Statement parseStatement(String source) throws AstException {
Source s = new Source(source, "statementSnippet");
s.parseStatement();
return process(s, "statement", Statement.class);
}
public static Expression parseExpression(String source) throws AstException {
Source s = new Source(source, "expressionSnippet");