new NoCaseStringStream(source);
ForteLexer lexer = new ForteLexer(stream);
TokenStream tokens = new CommonTokenStream(lexer);
parser = new ForteParser(tokens);
// parser.setTokenStream(tokens);
qualifiedIdentExpression_return result = parser.qualifiedIdentExpression();
CommonTree tree = (CommonTree) result.getTree();
errors = parser.getNumberOfSyntaxErrors();
if (errors == 0){
if (PRINT_TREE)
System.out.println("Tree==>"+tree.toStringTree());