Esempio n. 1
0
            public static bool ApplyChange(BlockNode block, ControlPath path, string property, string expression, bool wasRemoved)
            {
                var visitor = new ChangePropertyVisitor(property, expression, wasRemoved);

                visitor.Visit(block, path);
                return(visitor._success);
            }