GithubHelp home page GithubHelp logo

codesearchtree's Introduction

CodeSearchTree

Simple Roslyn based code analysis library.

CodeSearchTree.dll uses Roslyn but does not require that your program references Roslyn.

Search expressions

A search expression is a slash separated list of nodes. To get from a namespace to a method via a class, type:

namespace/class/method

Or:

ns/cls/method

If your namespace contains several classes, and your classes contains several methods, you can add an index. This will give you the third (index 2) method in the second (index 1) class.

ns/cls[1]/method[2]

You can also specify names instead of indexes. This will give you the method called MyFunction in the second class:

ns/cls[1]/method[MyFunction]

The node type can be unspecified. This will give you anything named MyFunction in the first class in the namespace.

ns/cls/*[MyFunction]

And this will deliver the first node with two parent nodes, regardless of name and type:

*/*/*

C# Examples

Get class node from file:

var code_tree = CodeSearchTree.Node.CreateTreeFromFile(filename);
Var my_class = "ns/cls";

Search for file that contains node a class named MyClass:

var result = CodeSearchTree.FileSystem.CreateTreesFromFolder(foldername, "*/cls[MyClass]");
if (result.Count > 0)
   Console.WriteLine("Success!");

codesearchtree's People

Contributors

anders-h avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.