예제 #1
0
        public SyntaxToken ConvertIdentifier(SyntaxToken id, bool isAttribute = false)
        {
            string text        = id.ValueText;
            var    keywordKind = SyntaxFacts.GetKeywordKind(text);

            if (keywordKind != Microsoft.CodeAnalysis.CSharp.SyntaxKind.None)
            {
                return(SyntaxFactory.Identifier("@" + text));
            }
            if (id.SyntaxTree == _semanticModel.SyntaxTree)
            {
                var symbol = _semanticModel.GetSymbolInfo(id.Parent).Symbol;
                if (symbol != null && !String.IsNullOrWhiteSpace(symbol.Name))
                {
                    if (symbol.IsConstructor() && isAttribute)
                    {
                        text = symbol.ContainingType.Name;
                        if (text.EndsWith("Attribute", StringComparison.Ordinal))
                        {
                            text = text.Remove(text.Length - "Attribute".Length);
                        }
                    }
                    else if (text.StartsWith("_", StringComparison.Ordinal) && symbol is IFieldSymbol fieldSymbol && fieldSymbol.AssociatedSymbol?.IsKind(SymbolKind.Property) == true)
                    {
                        text = fieldSymbol.AssociatedSymbol.Name;
                    }
                }
            }
            return(SyntaxFactory.Identifier(text));
        }
예제 #2
0
        private static string EscapeIdentifier(string identifier)
        {
            var kind = SyntaxFacts.GetKeywordKind(identifier);

            return(kind == SyntaxKind.None
                ? identifier
                : $"@{identifier}");
        }
예제 #3
0
        private static string EscapeIdentifier(string identifier)
        {
            var kind = SyntaxFacts.GetKeywordKind(identifier);

            return(kind == SyntaxKind.None
                ? identifier
                : string.Format("@{0}", identifier));
        }
예제 #4
0
        public SyntaxToken ConvertIdentifier(SyntaxToken id, bool isAttribute = false)
        {
            string text = id.ValueText;

            var keywordKind = SyntaxFacts.GetKeywordKind(text);

            if (keywordKind != Microsoft.CodeAnalysis.CSharp.SyntaxKind.None)
            {
                return(SyntaxFactory.Identifier("@" + text));
            }

            if (id.SyntaxTree == _semanticModel.SyntaxTree)
            {
                var symbol = _semanticModel.GetSymbolInfo(id.Parent).Symbol;
                if (symbol != null && !string.IsNullOrWhiteSpace(symbol.Name))
                {
                    if (text.Equals(symbol.Name, StringComparison.OrdinalIgnoreCase))
                    {
                        text = symbol.Name;
                    }

                    if (symbol.IsConstructor() && isAttribute)
                    {
                        text = symbol.ContainingType.Name;
                        if (text.EndsWith("Attribute", StringComparison.OrdinalIgnoreCase))
                        {
                            text = text.Remove(text.Length - "Attribute".Length);
                        }
                    }
                    else if (symbol.IsKind(SymbolKind.Parameter) && symbol.ContainingSymbol.IsAccessorPropertySet() && ((symbol.IsImplicitlyDeclared && symbol.Name == "Value") || symbol.ContainingSymbol.GetParameters().FirstOrDefault(x => !x.IsImplicitlyDeclared) == symbol))
                    {
                        // The case above is basically that if the symbol is a parameter, and the corresponding definition is a property set definition
                        // AND the first explicitly declared parameter is this symbol, we need to replace it with value.
                        text = "value";
                    }
                    else if (text.StartsWith("_", StringComparison.OrdinalIgnoreCase) && symbol is IFieldSymbol propertyFieldSymbol && propertyFieldSymbol.AssociatedSymbol?.IsKind(SymbolKind.Property) == true)
                    {
                        text = propertyFieldSymbol.AssociatedSymbol.Name;
                    }
                    else if (text.EndsWith("Event", StringComparison.OrdinalIgnoreCase) && symbol is IFieldSymbol eventFieldSymbol && eventFieldSymbol.AssociatedSymbol?.IsKind(SymbolKind.Event) == true)
                    {
                        text = eventFieldSymbol.AssociatedSymbol.Name;
                    }
                }
            }