Click here to Skip to main content
15,885,546 members
Articles / Programming Languages / C#

Resolving Symbolic References in a CodeDOM (Part 7)

Rate me:
Please Sign up or sign in to vote.
4.75/5 (6 votes)
2 Dec 2012CDDL12 min read 19.4K   509   14  
Resolving symbolic references in a CodeDOM.
// The Nova Project by Ken Beckett.
// Copyright (C) 2007-2012 Inevitable Software, all rights reserved.
// Released under the Common Development and Distribution License, CDDL-1.0: http://opensource.org/licenses/cddl1.php

using Nova.Parsing;
using Nova.Rendering;

namespace Nova.CodeDOM
{
    /// <summary>
    /// The common base class of <see cref="GetterDecl"/>, <see cref="SetterDecl"/>, <see cref="AdderDecl"/>,
    /// and <see cref="RemoverDecl"/>.
    /// </summary>
    /// <remarks>
    /// The return types of SetterDecls, AdderDecls, and RemoverDecls are always 'void'.  A GetterDecl
    /// takes on the type of its parent PropertyDecl or IndexerDecl as its return type (it will be
    /// null if it has no parent yet).
    /// Names aren't used for these methods in the GUI or C# source code, but the prefix that would
    /// be attached to the parent PropertyDecl, IndexerDecl, or EventDecl name to create the internal
    /// method name is stored, so that the internal name can be generated if/when needed.
    /// </remarks>
    public abstract class AccessorDecl : MethodDecl
    {
        #region /* CONSTRUCTORS */

        protected AccessorDecl(string namePrefix, Expression returnType, Modifiers modifiers, CodeObject body)
            : base(namePrefix, returnType, modifiers, body)
        { }

        protected AccessorDecl(string namePrefix, Expression returnType, Modifiers modifiers)
            : base(namePrefix, returnType, modifiers)
        { }

        protected AccessorDecl(string namePrefix, Expression returnType, CodeObject body)
            : base(namePrefix, returnType, body)
        { }

        #endregion

        #region /* PARSING */

        protected AccessorDecl(Parser parser, CodeObject parent, string namePrefix, ParseFlags flags)
            : base(parser, parent, false, flags)
        {
            _name = namePrefix;
        }

        protected void ParseAccessor(Parser parser, ParseFlags flags)
        {
            // Preserve the parsed NewLines value (MethodDeclBase forces it to 1 if it's 0), but
            // we'll allow accessors to be inlined by default.
            NewLines = parser.Token.NewLines;

            ParseModifiersAndAnnotations(parser);  // Parse any attributes and/or modifiers
            parser.NextToken();                    // Move past keyword
            ParseTerminatorOrBody(parser, flags);

            if (AutomaticFormattingCleanup && !parser.IsGenerated)
            {
                // Force property accessors (get/set) to a single line if they have a single-line body,
                // and remove any blank lines preceeding them in the property declaration (includes events).
                if (_body != null && _body.Count < 2 && _body.IsSingleLine)
                    IsSingleLine = true;
                if (NewLines > 1)
                    NewLines = 1;
            }
        }

        #endregion

        #region /* FORMATTING */

        /// <summary>
        /// True if the <see cref="Statement"/> has an argument.
        /// </summary>
        public override bool HasArgument
        {
            get { return false; }
        }

        /// <summary>
        /// True if the code object only requires a single line for display by default.
        /// </summary>
        public override bool IsSingleLineDefault
        {
            get { return true; }
        }

        /// <summary>
        /// Determine a default of 1 or 2 newlines when adding items to a <see cref="Block"/>.
        /// </summary>
        public override int DefaultNewLines(CodeObject previous)
        {
            // Always default to no blank lines before property members
            return 1;
        }

        #endregion

        #region /* RENDERING */

        protected override void AsTextStatement(CodeWriter writer, RenderFlags flags)
        {
            UpdateLineCol(writer, flags);
            writer.Write(Keyword);
        }

        protected override void AsTextArgument(CodeWriter writer, RenderFlags flags)
        { }

        #endregion
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Common Development and Distribution License (CDDL)


Written By
Software Developer (Senior)
United States United States
I've been writing software since the late 70's, currently focusing mainly on C#.NET. I also like to travel around the world, and I own a Chocolate Factory (sadly, none of my employees are oompa loompas).

Comments and Discussions