public Visitor(XamlIlAstTransformationContext context, IXamlIlAstTransformer transformer)
 {
     _context     = context;
     _transformer = transformer;
 }
 public IXamlIlAstNode Visit(IXamlIlAstNode root, IXamlIlAstTransformer transformer)
 {
     root = root.Visit(new Visitor(this, transformer));
     return(root);
 }
Beispiel #3
0
 public void VisitChildren(IXamlIlAstNode root, IXamlIlAstTransformer transformer)
 {
     root.VisitChildren(new Visitor(this, transformer));
 }