Skip to content

Commit

Permalink
Adds files for every kind of node (that we know of)
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigorato committed Nov 18, 2017
1 parent 8f2bea6 commit f7deacf
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ast/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
# For node files
from ast.nodes import *
from ast.cyclenodes import *
from ast.functionnodes import *
from ast.conditionalnodes import *
from ast.expressionnodes import *

# Other imports
import ast.nodemanager
1 change: 1 addition & 0 deletions ast/conditionalnodes.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from ast.nodes import *
1 change: 1 addition & 0 deletions ast/expressionnodes.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from ast.nodes import *
1 change: 1 addition & 0 deletions ast/functionnodes.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from ast.nodes import *

0 comments on commit f7deacf

Please sign in to comment.