edgetype.py 157 B

1234567891011
  1. import ast
  2. class EdgeType:
  3. edge_map = {
  4. 'name': 1,
  5. 'args': 2,
  6. 'body': 3,
  7. 'decorator_list': 4,
  8. }
  9. last_index = 4