public override void CaseACharConstExp(ACharConstExp node)
 {
     Write(node.GetCharLiteral().Text);
 }
 public override void CaseACharConstExp(ACharConstExp node)
 {
     InACharConstExp(node);
     if (node.GetCharLiteral() != null)
     {
         node.GetCharLiteral().Apply(this);
     }
     OutACharConstExp(node);
 }
 public override void CaseACharConstExp(ACharConstExp node)
 {
     Value += node.GetCharLiteral().Text;
 }