protected override void OnStyleComment(StyleComment styleComment)
 {
     Emit(styleComment);
     base.OnStyleComment(styleComment);
 }
        protected override void OnStyleComment(StyleComment styleComment)
        {
            if (styleComment == null || _scriptDepth > 0)
                return;

            Emit(styleComment.ToString());
            base.OnStyleComment(styleComment);
        }
 protected virtual void OnStyleComment(StyleComment styleComment)
 { }
 protected virtual void OnStyleComment(StyleComment styleComment)
 {
     DefaultAction(styleComment);
 }