コード例 #1
0
ファイル: ParseTree.cs プロジェクト: viboes/DeepEnds
        public static TypeBlockSyntax Find(string path, SyntaxTree tree)
        {
            var find = new FindLeaf(path);

            find.Visit(tree);
            return(find.Found);
        }
コード例 #2
0
ファイル: ParseTree.cs プロジェクト: viboes/DeepEnds
        public static BaseTypeDeclarationSyntax Find(string path, SyntaxTree tree)
        {
            var find = new FindLeaf(path);

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