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