public override SyntaxNode VisitPageSystemPart(PageSystemPartSyntax node)
 {
     if (this.HasApplicationArea(node))
     {
         return(base.VisitPageSystemPart(node));
     }
     this.NoOfChanges++;
     return(node.AddPropertyListProperties(this.CreateApplicationAreaProperty(node)));
 }
Пример #2
0
        protected void ProcessPageSystemPartNode(ALSymbolInformation symbol, PageSystemPartSyntax syntax)
        {
            string name = symbol.kind.ToName() + " " + ALSyntaxHelper.EncodeName(symbol.name);

            if (syntax.SystemPartType != null)
            {
                symbol.fullName = name + ": " + syntax.SystemPartType.ToFullString();
            }
            symbol.fullName = name;
        }