Esempio n. 1
0
        public void AddChildrenAfterBlock(IBlock block, IEnumerable <IBlock> inputCharactors)
        {
            if (Index != null)
            {
                if (Index.Children.Contains(block))
                {
                    Index.AddChildrenAfterBlock(block, inputCharactors);
                }
            }

            if (Base != null)
            {
                if (Base.Children.Contains(block))
                {
                    Base.AddChildrenAfterBlock(block, inputCharactors);
                }
            }
        }