private void PrintBoolean(RuleContext left, string op, RuleContext right)
 {
     left.Accept(this);
     _output.AppendFormat(" {0} ", op);
     right.Accept(this);
 }