예제 #1
0
 void IHxlLanguageVisitor.Visit(HxlCommentElement element)
 {
     VisitComment(element);
 }
예제 #2
0
 public IEnumerable <string> End(HxlCommentElement e)
 {
     return(new[] {
         "__self.Write(\"-->\");"
     });
 }
예제 #3
0
 protected virtual void VisitComment(HxlCommentElement element)
 {
     DefaultVisit(element);
 }
예제 #4
0
 public IEnumerable <string> Start(HxlCommentElement e)
 {
     return(new[] {
         "__self.Write(\"<!--\");",
     });
 }