예제 #1
0
        private static CodeItem MapSwitchSection(SwitchSectionSyntax section)
        {
            if (section == null)
            {
                return(null);
            }

            var item = SyntaxMapper.MapBase <CodePropertyItem>(section, section.Labels.First().ToString());

            item.Tooltip = TooltipMapper.Map(item.Access, item.Type, item.Name, string.Empty);
            item.Id      = SyntaxMapper.MapId(item.FullName, null);
            item.Kind    = CodeItemKindEnum.SwitchSection;
            item.Moniker = SyntaxMapper.MapMoniker(item.Kind, item.Access);

            return(item);
        }
예제 #2
0
        private static CodeItem MapSwitch(SwitchStatementSyntax statement)
        {
            if (statement == null)
            {
                return(null);
            }

            var item = SyntaxMapper.MapBase <CodeClassItem>(statement, statement.Expression.ToString());

            item.Name        = $"Switch {item.Name}";
            item.Kind        = CodeItemKindEnum.Switch;
            item.Moniker     = SyntaxMapper.MapMoniker(item.Kind, item.Access);
            item.BorderBrush = SyntaxMapper.CreateSolidColorBrush(Colors.DarkGray);
            item.Tooltip     = TooltipMapper.Map(item.Access, string.Empty, item.Name, item.Parameters);

            // Map switch cases
            foreach (var section in statement.Sections)
            {
                item.Members.Add(MapSwitchSection(section));
            }

            return(item);
        }