Exemplo n.º 1
0
        protected internal void RenderSubScopes(RenderContext renderContext)
        {
            foreach (Scope subScope in SubScopes)
            {
                if (subScope.ExprRenderer.RenderType != ExprRenderType.BlockMiddle)
                    renderContext.AppendResult(_subScopesStaticText[subScope]);

                renderContext.RenderScope(subScope);
            }

            if (_lastStaticText != null)
                renderContext.AppendResult(_lastStaticText);
        }