protected virtual void VisitWhen(HxlWhenElement element)
 {
     DefaultVisit(element);
 }
 public IEnumerable <string> End(HxlWhenElement e)
 {
     return(new [] { "}" });
 }
 void IHxlLanguageVisitor.Visit(HxlWhenElement element)
 {
     VisitWhen(element);
 }
 public IEnumerable <string> Start(HxlWhenElement e)
 {
     return(BindIf(e.Test, false));
 }