Exemplo n.º 1
0
        public static TypeBlockSyntax Find(string path, SyntaxTree tree)
        {
            var find = new FindLeaf(path);

            find.Visit(tree);
            return(find.Found);
        }
Exemplo n.º 2
0
        public static BaseTypeDeclarationSyntax Find(string path, SyntaxTree tree)
        {
            var find = new FindLeaf(path);

            find.Visit(tree);
            return(find.Found);
        }