A semantic search engine for source code https://bitshift.benkurtovic.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

10 lines
180 B

  1. from .association import Association
  2. from .node import Node
  3. from .tree import Tree
  4. __all__ = ["parse_query"]
  5. def parse_query(query):
  6. # gets a string, returns a Tree
  7. pass