RQMethodPropertyOrEventName.cs 826 字节
Newer Older
1 2
// Copyright (c) Microsoft.  All Rights Reserved.  Licensed under the Apache License, Version 2.0.  See License.txt in the project root for license information.

3
using Microsoft.CodeAnalysis.Features.RQName.SimpleTree;
4

5
namespace Microsoft.CodeAnalysis.Features.RQName.Nodes
6 7 8 9 10 11 12 13 14 15 16 17 18 19
{
    internal abstract class RQMethodPropertyOrEventName
    {
        /// <summary>
        /// Methods, Properties, or Events either have "ordinary" names,
        /// or explicit interface names. But even explicit names have an
        /// underlying ordinary name as well. This is just the value for
        /// ordinary names, or the underlying ordinary name if this is an
        /// explicit name.
        /// </summary>
        public abstract string OrdinaryNameValue { get; }

        public abstract SimpleGroupNode ToSimpleTree();
    }
20
}