Exemple #1
0
            public override bool VisitBaseType(BaseTypeDeclarationSyntax basetype, string path)
            {
                var branch = this.parser.Dependencies.GetPath(path, ".");
                var leaf   = this.parser.Create(basetype.Identifier.ValueText, path + "." + basetype.Identifier.ValueText, branch);

                leaf.LOC = Count(basetype.ToString());
                this.sources.Create(leaf, new Core.SourceProvider(this.filename));
                return(true);
            }